nano moved here.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fvi")
|
||||
autotools.configure("--disable-rpath \
|
||||
--enable-utf8 \
|
||||
--enable-altrcname \
|
||||
--disable-speller")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.insinto("/etc/", "doc/nanorc.sample", "nanorc")
|
||||
pisitools.dosym("/usr/bin/nano", "/bin/nano")
|
||||
|
||||
pisitools.dohtml("doc/*.html")
|
||||
pisitools.dodoc("ChangeLog*", "README", "doc/nanorc.sample", "AUTHORS", "NEWS", "TODO", "COPYING*", "THANKS", "UPGRADE")
|
||||
Reference in New Issue
Block a user