oniguruma-6.9.10
This commit is contained in:
@@ -1,27 +1,27 @@
|
||||
#!/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
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#WorkDir = "onig-%s" %get.srcVERSION()
|
||||
i = ''.join([
|
||||
' --prefix=/usr',
|
||||
' --enable-posix-api',
|
||||
' --enable-static=no',
|
||||
' --disable-silent-rules '
|
||||
])
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--enable-posix-api \
|
||||
--disable-silent-rules \
|
||||
--disable-static")
|
||||
|
||||
autotools.configure(i)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "README*", "AUTHORS", "ChangeLog")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
|
||||
Reference in New Issue
Block a user