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
+28
View File
@@ -0,0 +1,28 @@
#!/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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
#shelltools.export("DEFS", "NO_ASM")
autotools.configure("--exec-prefix=/")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# add missing gzcat
pisitools.dosym("zcat", "/bin/gzcat")
pisitools.dodoc("ChangeLog", "NEWS", "README", "THANKS", "TODO")
+52
View File
@@ -0,0 +1,52 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gzip</Name>
<Homepage>http://www.gnu.org/software/gzip</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<IsA>app:console</IsA>
<Summary>Standard GNU compressor</Summary>
<Description>gzip (GNU zip) is a popular data compression program written for the GNU project.</Description>
<Archive sha1sum="05bd01fc90178b806e0c13f9526e2ad392084085" type="tarxz">http://ftp.gnu.org/gnu/gzip/gzip-1.6.tar.xz</Archive>
</Source>
<Package>
<Name>gzip</Name>
<Files>
<Path fileType="executable">/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="info">/usr/share/info</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-11</Date>
<Version>1.6</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-31</Date>
<Version>1.6</Version>
<Comment>Version bumm, clean gzip.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-23</Date>
<Version>1.5</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+9
View File
@@ -0,0 +1,9 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gzip</Name>
<Summary xml:lang="tr">GNU dosya arşiv aracı</Summary>
<Description xml:lang="tr">Gzip (GNU zip) GNU projesi için geliştirilmiş popüler bir veri sıkıştırma programıdır.</Description>
<Description xml:lang="fr">gzip (GNU zip) est un programme populaire de compression de donnée écrit pour le projet GNU.</Description>
</Source>
</PISI>