upx: initial commit

This commit is contained in:
Danny Rawlins 2006-12-05 06:27:04 +11:00
parent 3ed5206ad7
commit be5a0e5697
3 changed files with 26 additions and 0 deletions

6
upx/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/upx
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/upx.1.gz

1
upx/.md5sum Normal file
View File

@ -0,0 +1 @@
058a57c2e8d642579d4dda56633b9fd2 upx-2.02-src.tar.gz

19
upx/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Ultimate Packer for eXecutables.
# URL: http://upx.sourceforge.net/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Younes Hafri, ycrux at club-internet dot fr
# Depends on: libucl, liblzo
name=upx
version=2.02
release=1
source=(http://upx.sourceforge.net/download/upx-$version-src.tar.gz)
build() {
cd $name-$version-src
(cd doc; make; cd ..)
(cd src; make; cd ..)
install -D -m644 -oroot -groot doc/upx.1 $PKG/usr/man/man1/upx.1
install -D -m755 -oroot -groot src/upx.out $PKG/usr/bin/upx
}