wok view electric-fence/receipt @ rev 3875

Busybox: ensure pidfile are valid
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 10 13:56:55 2009 +0200 (2009-08-10)
parents
children 31c985a0bd3d
line source
1 # SliTaz package receipt.
3 PACKAGE="electric-fence"
4 VERSION="2.1.13"
5 CATEGORY="development"
6 SHORT_DESC="Memory allocation debugger"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gdb"
9 TARBALL="${PACKAGE}_${VERSION}-0.1.tar.gz"
10 WEB_SITE="http://perens.com/works/software/"
11 WGET_URL="http://perens.com/works/software/ElectricFence/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 src=${PACKAGE}-${VERSION}
17 cd $src
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 src=${PACKAGE}-${VERSION}
26 mkdir -p $fs/usr/lib $fs/usr/bin
27 cp -a $src/eftest $fs/usr/bin
28 cp -a $src/tstheap $fs/usr/bin
29 cp -a $src/*.a $fs/usr/lib
30 }