wok rev 15341
n2nc: use autoconf
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Sep 29 11:40:18 2013 +0000 (2013-09-29) |
parents | d241f7e37b46 |
children | 531807aaf860 |
files | n2nc/receipt |
line diff
1.1 --- a/n2nc/receipt Sun Sep 29 11:30:44 2013 +0000 1.2 +++ b/n2nc/receipt Sun Sep 29 11:40:18 2013 +0000 1.3 @@ -11,13 +11,18 @@ 1.4 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.5 1.6 DEPENDS="zlib libcrypto gcc-lib-base" 1.7 -BUILD_DEPENDS="bash openssl-dev bzip2-dev zlib-dev" 1.8 +BUILD_DEPENDS="bash openssl-dev bzip2-dev zlib-dev automake autoconf" 1.9 1.10 # Rules to configure and make the package. 1.11 compile_rules() 1.12 { 1.13 mv $PACKAGE $src 2> /dev/null 1.14 cd $src 1.15 + libtoolize --force 1.16 + aclocal 1.17 + autoheader 1.18 + automake --force-missing --add-missing 1.19 + autoconf 1.20 ./configure --prefix=/usr --mandir=/usr/share/man \ 1.21 --localstatedir=/var \ 1.22 $CONFIGURE_ARGS &&