wok view diffutils/receipt @ rev 8679

Merge + dahdi-linux now use udev ruleset
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Feb 17 01:13:41 2011 +0100 (2011-02-17)
parents 3481c69a3d4c
children b90843fa3804
line source
1 # SliTaz package receipt.
3 PACKAGE="diffutils"
4 VERSION="3.0"
5 CATEGORY="development"
6 SHORT_DESC="Show differences between two files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/diffutils/"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr $CONFIGURE_ARGS &&
17 make &&
18 make DESTDIR=$PWD/_pkg install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
25 cp -a $_pkg/usr/bin $fs/usr
26 }