41 lines
1.3 KiB
Python
41 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 autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
from pisi.actionsapi import get
|
|
|
|
WorkDir = "db-%s/build_unix" % get.srcVERSION()
|
|
|
|
def setup():
|
|
pisitools.ldflags.add("-Wl,--default-symver -lpthread")
|
|
shelltools.system("../dist/configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--datadir=/usr/share \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var/lib \
|
|
--libdir=/usr/lib \
|
|
--enable-compat185 \
|
|
--with-uniquename \
|
|
--enable-cxx \
|
|
--enable-dbm \
|
|
--disable-tcl \
|
|
--disable-java \
|
|
--disable-static \
|
|
--disable-test")
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.install('libdir="%s/usr/lib"' % get.installDIR())
|
|
|
|
# Move docs
|
|
pisitools.domove("/usr/docs/", "/usr/share/doc/%s/html/" % get.srcNAME())
|