123456789101112131415161718192021222324252627282930313233 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import get
- def setup():
- # autotools.autoreconf("-fvi")
- autotools.configure("--disable-rpath \
- --enable-utf8 \
- --enable-altrcname \
- --enable-color \
- --enable-nanorc \
- --enable-multibuffer \
- --disable-speller")
- def build():
- autotools.make()
-
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
-
- # Enable colorization by default
- shelltools.system("""sed -i -e '/^# include /s:# *::' doc/sample.nanorc""")
-
- pisitools.insinto("/etc/", "doc/sample.nanorc", "nanorc")
- pisitools.dosym("/usr/bin/nano", "/bin/nano")
- pisitools.dohtml("doc/*.html")
- pisitools.dodoc("ChangeLog*", "README", "doc/sample.nanorc", "AUTHORS", "NEWS", "TODO", "COPYING*", "THANKS")
|