create core package
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.export("OPTIMIZER", get.CFLAGS())
|
||||
shelltools.export("DEBUG", "-DNDEBUG")
|
||||
|
||||
autotools.rawConfigure("--libdir=/lib \
|
||||
--mandir=/usr/share/man \
|
||||
--libexecdir=/lib \
|
||||
--bindir=/bin")
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.make("DESTDIR=%s install install-lib install-dev" % get.installDIR())
|
||||
|
||||
pisitools.remove("/lib/*.a")
|
||||
|
||||
shelltools.chmod("%s/lib/libacl.so.*.*.*" % get.installDIR(), 0755)
|
||||
|
||||
pisitools.dodoc("README")
|
||||
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>acl</Name>
|
||||
<Homepage>http://acl.bestbits.at/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2+</License>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Access control list utilities</Summary>
|
||||
<Description>acl contains the getfacl and setfacl utilities needed for manipulating access control lists along with the needed libraries.</Description>
|
||||
<Archive sha1sum="537dddc0ee7b6aa67960a3de2d36f1e2ff2059d9" type="targz">http://download.savannah.gnu.org/releases-noredirect/acl/acl-2.2.52.src.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>attr</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>acl</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>attr</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/bin</Path>
|
||||
<Path fileType="library">/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>acl-devel</Name>
|
||||
<PartOf>system.devel</PartOf>
|
||||
<Summary>Development files for acl</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">acl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-09-30</Date>
|
||||
<Version>2.2.52</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>2.2.52</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-08-28</Date>
|
||||
<Version>2.2.52</Version>
|
||||
<Comment>Version bump, clean acl.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-06-04</Date>
|
||||
<Version>2.2.51</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdem Artan</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>acl</Name>
|
||||
<Summary xml:lang="tr">Erişim denetim listesi için çeşitli araçlar</Summary>
|
||||
<Description xml:lang="tr">acl erişim denetim listelerini yönetmeye yarayan getfacl ve setfacl araçlarıyla gerekli kütüphaneleri içeren bir pakettir.</Description>
|
||||
<Summary xml:lang="fr">Utilitaires, librairies et fichiers d'entête de liste de contrôle d'accès.</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>acl-devel</Name>
|
||||
<Summary xml:lang="tr">acl için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user