1
0
forked from ports/contrib

upx: 3.08 -> 3.91

This commit is contained in:
Danny Rawlins 2016-09-10 17:16:33 +10:00
parent 3b6933775c
commit b59cd11c3e
3 changed files with 14 additions and 11 deletions

View File

@ -1,6 +1,7 @@
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
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/upx.1.gz

View File

@ -1 +1,2 @@
54c76fa52cad578ff23ef98aee91e3f5 upx-3.08-src.tar.bz2
29d5ffd03a5a3e51aef6a74e9eafb759 lzma465.tar.bz2
c6d0b3ea2ecb28cb8031d59a4b087a43 upx-3.91-src.tar.bz2

View File

@ -2,18 +2,19 @@
# URL: http://upx.sourceforge.net/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Younes Hafri, ycrux at club-internet dot fr
# Depends on: ucl lzo zlib
# Depends on: ucl zlib
name=upx
version=3.08
version=3.91
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version-src.tar.bz2)
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version-src.tar.bz2
http://downloads.sourceforge.net/sevenzip/lzma465.tar.bz2)
build() {
cd $name-$version-src
make -C doc
make -C src
install -m 0644 -D doc/upx.1 $PKG/usr/man/man1/upx.1
make UPX_LZMA_VERSION=0x465 UPX_LZMADIR=$SRC all
install -m 0644 -D doc/upx.1 $PKG/usr/share/man/man1/upx.1
install -m 0755 -D src/upx.out $PKG/usr/bin/upx
}