wok view rcs/receipt @ rev 15590

gphoto2, gtkperf: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 02 19:18:04 2013 +0000 (2013-12-02)
parents 4380a8347bbf
children 79ce2c7c3b95
line source
1 # SliTaz package receipt.
3 PACKAGE="rcs"
4 VERSION="5.7"
5 CATEGORY="development"
6 SHORT_DESC="GNU Revision Control System."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/rcs/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="cvs version-control versioning"
14 DEPENDS="diffutils"
15 BUILD_DEPENDS="diffutils"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 # remove busybox/diff
22 [ -L /usr/bin/diff ] && tazpkg get-install diffutils --forced
23 sed -i 's,test -w a.d || cp /dev/null a.d 2>/dev/null,false,' \
24 src/conf.sh
25 ./configure --prefix=/usr $CONFIGURE_ARGS &&
26 make
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 for p in ci co ident merge rcs rcsclean rcsdiff rcsmerge rlog; do
34 install -c $src/src/$p $fs/usr/bin
35 done
36 }