wok view rcs/receipt @ rev 2562

declare /etc/filesystems
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 29 11:34:34 2009 +0000 (2009-03-29)
parents
children 8be66f03fbd2
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="diffutils"
10 BUILD_DEPENDS="diffutils"
11 WEB_SITE="http://www.gnu.org/software/rcs/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -i 's,test -w a.d || cp /dev/null a.d 2>/dev/null,false,' \
19 src/conf.sh
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 for p in ci co ident merge rcs rcsclean rcsdiff rcsmerge rlog; do
29 install -c $src/src/$p $fs/usr/bin
30 done
31 }