wok annotate electric-fence/receipt @ rev 15819

traceroute: Moved traceroute to /usr/bin folder. Fixed WEB_SITE.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 06:41:39 2014 +0000 (2014-01-24)
parents a1c1d35d9f92
children e3f377fbc5f0
rev   line source
erjo@1728 1 # SliTaz package receipt.
erjo@1728 2
erjo@1728 3 PACKAGE="electric-fence"
erjo@1728 4 VERSION="2.1.13"
erjo@1728 5 CATEGORY="development"
erjo@1728 6 SHORT_DESC="Memory allocation debugger"
erjo@1728 7 MAINTAINER="erjo@slitaz.org"
pascal@15588 8 LICENSE="GPL2"
erjo@1728 9 TARBALL="${PACKAGE}_${VERSION}-0.1.tar.gz"
erjo@1728 10 WEB_SITE="http://perens.com/works/software/"
erjo@1728 11 WGET_URL="http://perens.com/works/software/ElectricFence/$TARBALL"
jozee@4935 12 TAGS="debugger"
erjo@1728 13
pascal@15588 14 DEPENDS="gdb"
pascal@15588 15
erjo@1728 16 # Rules to configure and make the package.
erjo@1728 17 compile_rules()
erjo@1728 18 {
erjo@1728 19 cd $src
erjo@1728 20
erjo@1728 21 make
erjo@1728 22 }
erjo@1728 23
erjo@1728 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1728 25 genpkg_rules()
erjo@1728 26 {
erjo@1728 27 mkdir -p $fs/usr/lib $fs/usr/bin
erjo@1728 28 cp -a $src/eftest $fs/usr/bin
erjo@1728 29 cp -a $src/tstheap $fs/usr/bin
erjo@1728 30 cp -a $src/*.a $fs/usr/lib
erjo@1728 31 }
erjo@1728 32