wok view cvs/receipt @ rev 19617

Up SliTaz projects: cookutils(863), slitaz-base-files(319), slitaz-boot-scripts(436), slitaz-configs(299), slitaz-tools(1008), ssfs(108), tazbug(94), tazinst(86), tazirc(18), tazlito(445), tazpanel(610), tazpkg(932), tazusb(194), tazweb(174).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jan 10 14:28:40 2017 +0200 (2017-01-10)
parents eb8067417980
children 6e8b1bcb30e2
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 ./configure -C --prefix=/usr \
20 --with-ssh \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $install/usr/bin/cvs* $fs/usr/bin
31 }