123456789101112131415161718192021222324252627282930 |
- #!/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 autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- def setup():
- # Fix soname
- pisitools.dosed("src/Makefile.in", "^LIBSHARED.*", "LIBSHARED = libnids.so.%s" % get.srcVERSION().split(".", 1)[0])
- # disable static
- pisitools.dosed("src/Makefile.in", "\$\(INSTALL.*libnids.a.*")
- autotools.autoreconf("-vfi")
- autotools.configure("--enable-shared \
- --disable-static")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("install_prefix=%s" % get.installDIR())
- pisitools.dodoc("CHANGES", "COPYING", "CREDITS", "MISC", "README", "doc/*")
|