wok view cvs/receipt @ rev 10217

Up: clutter to 1.6.14.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 23:47:54 2011 +0000 (2011-05-20)
parents c28598b27ff5
children eb8067417980
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 libkrb5"
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 --with-ssh \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $_pkg/usr/bin/cvs* $fs/usr/bin
30 }