upx:first pisi release

This commit is contained in:
ibrahimkaraguzel
2016-04-03 21:17:30 +03:00
parent 45b2c2046a
commit 9ef2368af7
3 changed files with 77 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/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("UPX_LZMA_VERSION", "0x465")
shelltools.export("UPX_LZMADIR", get.workDIR())
def build():
autotools.make("all")
def install():
pisitools.insinto("/usr/bin", "src/upx.out", "upx")
pisitools.insinto("/usr/share/man/man1", "doc/upx.1")
pisitools.dodoc("BUGS", "COPYING", "LICENSE", "NEWS", "PROJECTS", "README*", "THANKS" )
+46
View File
@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>upx</Name>
<Homepage>http://upx.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPL</License>
<IsA>app:console</IsA>
<Summary>Ultimate executable compressor.</Summary>
<Description>UPX is an advanced executable file compressor. UPX will typically reduce the file size of programs and DLLs by around 50%-70%, thus reducing disk space, network load times, download times and other distribution and storage costs.</Description>
<Archive sha1sum="da962c0affb27eae11aa9b6fbd751c3699717b36" type="tarbz2">http://upx.sourceforge.net/download/upx-3.91-src.tar.bz2</Archive>
<Archive sha1sum="5ec1c4606fec88c770a9712073e83916f8aed173" type="tarbz2">http://downloads.sourceforge.net/sevenzip/lzma465.tar.bz2</Archive>
<BuildDependencies>
<Dependency>ucl-devel</Dependency>
<Dependency>zlib-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>upx</Name>
<RuntimeDependencies>
<Dependency>ucl</Dependency>
<Dependency>zlib</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man/man1</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-03</Date>
<Version>3.91</Version>
<Comment>First Pisi Release</Comment>
<Name>İbrahim KARAGÜZEL</Name>
<Email>karaguzelibrahim@gmail.com</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>upx</Name>
<Summary xml:lang="tr">UPX (Ultimate executable compressor), bir dosya sıkıştırıcısı</Summary>
<Description xml:lang="tr">UPX ileri düzey bir çalıştırılabilir dosya sıkıştırıcısıdır. UPX genel olarak programların ve kitaplıkların dosya boyutunu %50 ila %70 oranında sıkıştırarak disk kullanım alanını, ağa yüklenme ve indirme süresini düşürür.</Description>
</Source>
</PISI>