# HG changeset patch # User Allan Pinto # Date 1243967206 0 # Node ID 05f8cea6581785da5cf011c0a66d7264c28b9173 # Parent 4463b95d50a9b90d561513889f9a257c733cca83 add elinks diff -r 4463b95d50a9 -r 05f8cea65817 elinks/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/elinks/receipt Tue Jun 02 18:26:46 2009 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="elinks" +VERSION="0.11.6" +CATEGORY="network" +SHORT_DESC="Full featured www text browser" +MAINTAINER="allan316@gmail.com" +DEPENDS="openssl bzip2" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://elinks.or.cz" +WGET_URL="$WEB_SITE/download/$TARBALL" + +# 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 +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* +} +