wok view patch/receipt @ rev 141

Corrected typo in index.html
author Julien Rabier <julien.rabier@gmail.com>
date Wed Jan 16 23:39:38 2008 +0100 (2008-01-16)
parents
children cdac43c3f44f
line source
1 # SliTaz package receipt.
3 PACKAGE="patch"
4 VERSION="2.5.4"
5 CATEGORY="base-apps"
6 SHORT_DESC="Utilitie to patch file with diff file."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/patch/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/patch $fs/usr/bin
27 strip -s $fs/usr/bin/*
28 }
30 # Prevent erasing busybox...
31 pre_install()
32 {
33 local root
34 root=$1
35 rm -f $root/usr/bin/patch
36 }