wok annotate txt2tags/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents
children 600aaedb561d
rev   line source
pascal@7142 1 # SliTaz package receipt.
pascal@7142 2
pascal@7142 3 PACKAGE="txt2tags"
pascal@7142 4 VERSION="2.6"
pascal@7142 5 CATEGORY="misc"
pascal@7142 6 SHORT_DESC="Document generator."
pascal@7142 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@7142 8 TARBALL="$PACKAGE-$VERSION.tgz"
pascal@7142 9 WEB_SITE="http://txt2tags.org/"
pascal@7142 10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
pascal@7142 11 DEPENDS="python"
pascal@7142 12
pascal@7142 13 # Rules to configure and make the package.
pascal@7142 14 compile_rules()
pascal@7142 15 {
pascal@7142 16 cd $src
pascal@7142 17 }
pascal@7142 18
pascal@7142 19 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7142 20 genpkg_rules()
pascal@7142 21 {
pascal@7142 22 mkdir -p $fs/usr/bin
pascal@7142 23 cp -a $src/txt2tags $fs/usr/bin
pascal@7142 24 }
pascal@7142 25