wok-6.x annotate patch/receipt @ rev 9470

Remove some uneeded strips (thoses ones are handled by Tazwok)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Apr 04 01:29:52 2011 +0200 (2011-04-04)
parents 86e8692df3d3
children e92ede07eddc
rev   line source
pankso@26 1 # SliTaz package receipt.
pankso@26 2
pankso@26 3 PACKAGE="patch"
slaxemulator@5481 4 VERSION="2.6.1"
pankso@211 5 CATEGORY="utilities"
pankso@26 6 SHORT_DESC="Utilitie to patch file with diff file."
pankso@26 7 MAINTAINER="pankso@slitaz.org"
gokhlayeh@8207 8 DEPENDS="glibc-base"
gokhlayeh@8207 9 BUILD_DEPENDS="gcc"
pankso@26 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@26 11 WEB_SITE="http://www.gnu.org/software/patch/"
pankso@26 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@26 13
pankso@26 14 # Rules to configure and make the package.
pankso@26 15 compile_rules()
pankso@26 16 {
pankso@26 17 cd $src
gokhlayeh@8207 18 ./configure && make && make install
pankso@26 19 }
pankso@26 20
pankso@26 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@26 22 genpkg_rules()
pankso@26 23 {
pankso@26 24 mkdir -p $fs/usr/bin
gokhlayeh@8207 25 cp -a $_pkg/usr/bin/patch $fs/usr/bin
pankso@26 26 }
pankso@26 27
pankso@26 28 # Prevent erasing busybox...
pankso@26 29 pre_install()
pankso@26 30 {
pankso@26 31 local root
pankso@26 32 root=$1
pankso@26 33 rm -f $root/usr/bin/patch
pankso@26 34 }
pascal@303 35
pascal@303 36 post_remove()
pascal@303 37 {
pascal@303 38 ln -s /bin/busybox /usr/bin/patch
pascal@303 39 }