12345678910111213141516171819202122232425262728293031323334353637383940 |
- # -*- 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 = "."
- SkipFiles = [".pc", "filelist", "patches", "pisiBuildState"]
- def setup():
- pisitools.dosed("*/Makefile.am", r"/doc/\$\(PACKAGE\)", "/doc/xorg-proto")
- for package in shelltools.ls("."):
- if package in SkipFiles:
- continue
- shelltools.cd(package)
- autotools.autoreconf("-vif")
- autotools.configure("--without-xmlto --without-fop")
- shelltools.cd("../")
- def build():
- for package in shelltools.ls("."):
- if package in SkipFiles:
- continue
- shelltools.cd(package)
- autotools.make()
- shelltools.cd("../")
- def install():
- for package in shelltools.ls("."):
- if package in SkipFiles:
- continue
- shelltools.cd(package)
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- shelltools.cd("../")
|