create core package

This commit is contained in:
aydemir
2015-02-24 11:18:35 +02:00
parent 0e4b743b82
commit 70b25d0f95
1098 changed files with 169545 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/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 get
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+45
View File
@@ -0,0 +1,45 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libseccomp</Name>
<Homepage>http://sourceforge.net/projects/libseccomp/</Homepage>
<Packager>
<Name>Aydın Demirel</Name>
<Email>aydin.demirel@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>app:library</IsA>
<Summary>Enhanced seccomp library</Summary>
<Description>High level interface to the Linux Kernel's seccomp filter.</Description>
<Archive sha1sum="cc135ab6c95723cfbba034feb9630446de475341" type="targz">http://downloads.sourceforge.net/project/libseccomp/libseccomp-2.1.1/libseccomp-2.1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>glibc</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libseccomp</Name>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="library">/usr/lib/*</Path>
</Files>
</Package>
<Package>
<Name>libseccomp-devel</Name>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2014-06-27</Date>
<Version>2.1.1</Version>
<Comment>First release</Comment>
<Name>Aydın Demirel</Name>
<Email>aydin.demirel@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libseccomp</Name>
<Summary xml:lang="tr">Gelişmiş seccomp kütüphanesi</Summary>
<Description xml:lang="tr">Linux Kernel'in seccomp süzgecine yüksek seviyeli arayüz</Description>
</Source>
</PISI>