wok-stable annotate diffutils/receipt @ rev 5015
busybox: may not overload gnu utilities
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Mar 01 13:35:34 2010 +0100 (2010-03-01) |
parents | |
children | 6dc7a4df1585 |
rev | line source |
---|---|
pascal@2083 | 1 # SliTaz package receipt. |
pascal@2083 | 2 |
pascal@2083 | 3 PACKAGE="diffutils" |
pascal@2083 | 4 VERSION="2.8.1" |
pascal@2083 | 5 CATEGORY="development" |
pascal@2083 | 6 SHORT_DESC="Show differences between two files." |
pascal@2083 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2083 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@2083 | 9 WEB_SITE="http://www.gnu.org/software/diffutils/" |
pascal@2083 | 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
pascal@2083 | 11 |
pascal@2083 | 12 # Rules to configure and make the package. |
pascal@2083 | 13 compile_rules() |
pascal@2083 | 14 { |
pascal@2083 | 15 cd $src |
pascal@2083 | 16 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@2083 | 17 make && |
pascal@2083 | 18 make DESTDIR=$PWD/_pkg install |
pascal@2083 | 19 } |
pascal@2083 | 20 |
pascal@2083 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2083 | 22 genpkg_rules() |
pascal@2083 | 23 { |
pascal@2083 | 24 mkdir -p $fs/usr |
pascal@2083 | 25 cp -a $_pkg/usr/bin $fs/usr |
pascal@2083 | 26 } |