diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-04-12 02:17:56 +1000 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-04-12 02:17:56 +1000 |
commit | 1b87167dff65ea137217a247e0a9699eb5c4d433 (patch) | |
tree | 41eb67b936334bbc3f33124f71aa5bf6b8cd953e /upx | |
parent | 4cd68640ceb92d97ad98206210526ba4ff5ac65f (diff) | |
download | contrib-1b87167dff65ea137217a247e0a9699eb5c4d433.tar.gz contrib-1b87167dff65ea137217a247e0a9699eb5c4d433.tar.xz |
upx: fix wrong dependency names
Diffstat (limited to 'upx')
-rw-r--r-- | upx/Pkgfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/upx/Pkgfile b/upx/Pkgfile index 04c81c59d..0039e0d37 100644 --- a/upx/Pkgfile +++ b/upx/Pkgfile @@ -2,7 +2,7 @@ # 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 +# Depends on: ucl lzo name=upx version=2.03 @@ -10,10 +10,10 @@ release=1 source=(http://upx.sourceforge.net/download/upx-$version-src.tar.gz) build() { - cd $name-$version-src + cd upx-$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 + install -D -m644 doc/upx.1 $PKG/usr/man/man1/upx.1 + install -D -m755 src/upx.out $PKG/usr/bin/upx } |