wok-next view electric-fence/receipt @ rev 21725

busybox: add overrides
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:18:16 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="electric-fence"
4 VERSION="2.2.5"
5 CATEGORY="development"
6 TAGS="debugger"
7 SHORT_DESC="Memory allocation debugger"
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://packages.debian.org/sid/electric-fence"
11 REPOLOGY="electricfence"
13 TARBALL="${PACKAGE}_$VERSION.tar.gz"
14 WGET_URL="http://deb.debian.org/debian/pool/main/e/$PACKAGE/$TARBALL"
16 compile_rules()
17 {
18 make || return 1
20 mkdir -p $install/usr/lib
21 mkdir -p $install/usr/bin
23 cp -a $src/eftest $install/usr/bin
24 cp -a $src/tstheap $install/usr/bin
25 cp -a $src/*.a $install/usr/lib
26 }
28 genpkg_rules()
29 {
30 copy @std @dev
31 DEPENDS="gdb"
32 }