wok view which/receipt @ rev 8757

Fixed codeblocks.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 20 20:53:28 2011 +0000 (2011-02-20)
parents
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="which"
4 VERSION="2.20"
5 CATEGORY="base-system"
6 SHORT_DESC="A utility to show the full path of commands"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="glibc-base"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.xs4all.nl/~carlo17/which"
11 WGET_URL="http://www.xs4all.nl/~carlo17/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }
32 # Pre and post install commands for Tazpkg.
33 # We must remove all Busybox symlink before installing.
34 #
35 pre_install()
36 {
37 local root
38 root=$1
39 echo "Processing pre-install commands..."
40 echo -n "Removing all Busybox replaced utils... "
41 rm -f $root/usr/bin/which
42 status
43 }
45 post_remove()
46 {
47 ln -s /bin/busybox /usr/bin/which
48 }