util shell

This commit is contained in:
Rmys
2020-01-25 14:50:51 +03:00
parent a829188367
commit 6f77bc0569
3 changed files with 20 additions and 2 deletions
+1 -1
View File
@@ -16,4 +16,4 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README")
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README*")
+8 -1
View File
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>A library for changing configuration files</Summary>
<Description>augeas is a library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API.</Description>
<Archive sha1sum="3cfa4870fac3b6697e8039cb611cb0c5a75498a4" type="targz">http://download.augeas.net/augeas-1.10.1.tar.gz</Archive>
<Archive sha1sum="afe7aee292e058141d8c19f6a82b5f8bae2d5163" type="targz">http://download.augeas.net/augeas-1.12.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>libxml2-devel</Dependency>
<Dependency>readline-devel</Dependency>
@@ -51,6 +51,13 @@
</Package>
<History>
<Update release="6">
<Date>2020-01-25</Date>
<Version>1.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="5">
<Date>2018-07-31</Date>
<Version>1.10.1</Version>
+11
View File
@@ -10,10 +10,21 @@ from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fi")
shelltools.system("mkdir build")
shelltools.cd("build")
shelltools.system("../configure --disable-sanitizers \
--prefix=/usr \
--sysconfdir=/etc")
def build():
shelltools.cd("build")
autotools.make()
def install():
shelltools.cd("build")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")