wok-current rev 10062
vcdimager: Add $CONFIGURE_ARGS.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri May 20 04:55:20 2011 +0000 (2011-05-20) |
parents | b4443fb90d61 |
children | 6988f27ad479 |
files | vcdimager/receipt |
line diff
1.1 --- a/vcdimager/receipt Fri May 20 04:49:21 2011 +0000 1.2 +++ b/vcdimager/receipt Fri May 20 04:55:20 2011 +0000 1.3 @@ -16,9 +16,8 @@ 1.4 compile_rules() 1.5 { 1.6 cd $src 1.7 - ./configure --prefix=/usr 1.8 - make 1.9 - make DESTDIR=$PWD/_pkg install 1.10 + ./configure $CONFIGURE_ARGS && 1.11 + make && make install 1.12 } 1.13 1.14 # Rules to gen a SliTaz package suitable for Tazpkg. 1.15 @@ -26,6 +25,4 @@ 1.16 { 1.17 mkdir -p $fs/usr/bin 1.18 cp -a $_pkg/usr/bin/vcdimager $fs/usr/bin 1.19 - 1.20 - 1.21 }