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 + + +