wok view patch/receipt @ rev 9110

libplayer: update BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 05 10:16:36 2011 +0100 (2011-03-05)
parents fa124f2ab0f1
children 02bbaa9d12ba
line source
1 # SliTaz package receipt.
3 PACKAGE="patch"
4 VERSION="2.6.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Utilitie to patch file with diff file."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base"
9 BUILD_DEPENDS="gcc"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/patch/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure && make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $_pkg/usr/bin/patch $fs/usr/bin
26 strip -s $fs/usr/bin/*
27 }
29 # Prevent erasing busybox...
30 pre_install()
31 {
32 local root
33 root=$1
34 rm -f $root/usr/bin/patch
35 }
37 post_remove()
38 {
39 ln -s /bin/busybox /usr/bin/patch
40 }