# HG changeset patch # User Christopher Rogers # Date 1287367480 0 # Node ID 32b768dcab00c94605ffe26cf6384681a09cf7ba # Parent 34eb1b73983e7d4e66a7e42fbe63ae6ba60bfc98 Added hd2u. Dos2Unix text file converter. May come handy when getting patches from pastebin. diff -r 34eb1b73983e -r 32b768dcab00 hd2u/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hd2u/receipt Mon Oct 18 02:04:40 2010 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="hd2u" +VERSION="1.0.3" +CATEGORY="misc" +SHORT_DESC="Dos2Unix text file converter." +MAINTAINER="slaxemualtor@gmail.com" +DEPENDS="popt" +BUILD_DEPENDS="popt-dev" +TARBALL="$PACKAGE-$VERSION.tgz" +WEB_SITE="http://hany.sk/~hany/software/hd2u/" +WGET_URL="http://hany.sk/~hany/_data/hd2u/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make prefix=$PWD/_pkg/usr install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +} +