123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #!/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 shelltools
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import libtools
- from pisi.actionsapi import get
- def setup():
- options = "--disable-static \
- --disable-sqlite \
- --enable-flac \
- --enable-alsa \
- --enable-largefile \
- --disable-gcc-pipe \
- --disable-jack \
- --disable-octave \
- --disable-gcc-werror \
- --disable-dependency-tracking"
- pisitools.dosed("examples/Makefile.am", "noinst_PROGRAMS", "check_PROGRAMS")
- pisitools.dosed("tests/Makefile.am", "noinst_PROGRAMS", "check_PROGRAMS")
- shelltools.unlink("M4/libtool.m4")
- for i in shelltools.ls("M4/lt*.m4"):
- shelltools.unlink(i)
- autotools.autoreconf("-fi -I M4")
- autotools.configure(options)
- pisitools.dosed("doc/Makefile", "^htmldocdir.*", "htmldocdir = /usr/share/doc/%s/html" % get.srcNAME())
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|