# HG changeset patch # User Christophe Lincoln # Date 1305723390 -7200 # Node ID 0fd0cffcadc544f5d79fdc76dd1bdab936024e4d # Parent 3d847ed4909219f34732dbce0b8125cf400b3f41 elink: fix receipt path and build diff -r 3d847ed49092 -r 0fd0cffcadc5 elinks/receipt --- a/elinks/receipt Wed May 18 14:38:49 2011 +0200 +++ b/elinks/receipt Wed May 18 14:56:30 2011 +0200 @@ -5,27 +5,27 @@ CATEGORY="network" SHORT_DESC="Full featured www text browser" MAINTAINER="allan316@gmail.com" -DEPENDS="openssl bzip2 spidermonkey xorg-libX11 zlib libidn expat \ -xorg-libXau xorg-libXdmcp" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://elinks.or.cz" WGET_URL="$WEB_SITE/download/$TARBALL" TAGS="browser" +DEPENDS="openssl bzip2 spidermonkey xorg-libX11 zlib libidn expat \ +xorg-libXau xorg-libXdmcp" +BUILD_DEPENDS="openssl-dev bzip2-dev spidermonkey-dev libidn-dev expat-dev \ +xorg-libXau-dev xorg-libXdmcp-dev" + # Rules to configure and make the package. compile_rules() { cd $src - ./configure --prefix=$PWD/_pkg/usr --infodir=$PWD/_pkg/usr/share/info \ - --mandir=$PWD/_pkg/usr/share/man $CONFIGURE_ARGS && - make && - make install + ./configure && make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr }