wok view cvs/receipt @ rev 15701

Up: spacefm (0.9.2)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Dec 22 15:11:37 2013 +0100 (2013-12-22)
parents 02bbaa9d12ba
children 60d3db644e56
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 LICENSE="GPL"
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 DEPENDS="libcomerr libcomerr3 libcrypto libkrb5"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure -C --prefix=/usr \
21 --with-ssh \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 cp -a $install/usr/bin/cvs* $fs/usr/bin
32 }