From 21a1823eb8af289b2534c82de7e5bce05a5ef3d3 Mon Sep 17 00:00:00 2001 From: idriskalp Date: Sat, 22 Feb 2020 19:40:11 +0300 Subject: [PATCH] oniguruma add to repo --- programming/misc/oniguruma/actions.py | 26 ++++++++++++++ programming/misc/oniguruma/pspec.xml | 50 +++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 programming/misc/oniguruma/actions.py create mode 100644 programming/misc/oniguruma/pspec.xml diff --git a/programming/misc/oniguruma/actions.py b/programming/misc/oniguruma/actions.py new file mode 100644 index 0000000000..8a98468ff4 --- /dev/null +++ b/programming/misc/oniguruma/actions.py @@ -0,0 +1,26 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +WorkDir = "onig-%s" %get.srcVERSION() + +def setup(): + + autotools.autoreconf("-vfi") + autotools.configure() + + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" %get.installDIR()) + + pisitools.dodoc("COPYING", "README*", "AUTHORS", "ChangeLog") diff --git a/programming/misc/oniguruma/pspec.xml b/programming/misc/oniguruma/pspec.xml new file mode 100644 index 0000000000..2f9564372a --- /dev/null +++ b/programming/misc/oniguruma/pspec.xml @@ -0,0 +1,50 @@ + + + + + oniguruma + https://github.com/kkos/oniguruma/ + + İdris Kalp + idriskalp@gmail.com + + BSD + library + A regular expressions library + Oniguruma is a modern and flexible regular expressions library. It encompasses features from different regular expression implementations that traditionally exist in different languages. + https://github.com/kkos/oniguruma/releases/download/v6.9.4/onig-6.9.4.tar.gz + + + + oniguruma + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/ + /usr/share/man/man1 + + + + + oniguruma-devel + Development files for oniguruma + + oniguruma + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2020-02-22 + 6.9.4 + First release. + İdris Kalp + idriskalp@gmail.com + + +