Files
main/programming/misc/apr-util/actions.py
T
2015-09-02 02:04:42 +03:00

44 lines
1.3 KiB
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
# to avoid sandbox violations during make test
shelltools.export("ODBCINI", get.workDIR())
shelltools.export("ODBCSYSINI", get.workDIR())
def setup():
autotools.autoreconf("-vfi")
autotools.configure("--with-apr=/usr \
--includedir=/usr/include/apr-1 \
--with-ldap \
--without-gdbm \
--with-sqlite3 \
--with-pgsql \
--with-odbc=/usr/bin/odbc_config \
--with-mysql \
--without-freetds \
--with-berkeley-db \
--without-sqlite2")
#pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def check():
autotools.make("-j1 test")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dosed("%s/usr/bin/apu-1-config" % get.installDIR(), get.workDIR(), "")
pisitools.dodoc("CHANGES", "NOTICE")