wok view cvs/receipt @ rev 5681

add ypbind-mt
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 03 10:50:27 2010 +0200 (2010-06-03)
parents f7e96b8e3444
children c28598b27ff5
line source
1 # SliTaz package receipt.
3 PACKAGE="cvs"
4 VERSION="1.11.23"
5 CATEGORY="development"
6 SHORT_DESC="Concurrent Versions System"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libcomerr libcomerr3 libcrypto krb5"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://ximbiot.com/cvs/"
11 WGET_URL=""http://ftp.gnu.org/non-gnu/cvs/source/stable/$VERSION/$TARBALL
12 TAGS="version-control versioning"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure -C --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $_pkg/usr/bin/cvs* $fs/usr/bin
30 strip -s $fs/usr/bin/cvs
31 }