oniguruma add to repo

This commit is contained in:
idriskalp
2020-02-22 19:40:11 +03:00
parent f5df766cee
commit 21a1823eb8
2 changed files with 76 additions and 0 deletions
+26
View File
@@ -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")