wok view cvs/receipt @ rev 20774

updated ccid again (1.4.8 -> 1.4.30)
author Hans-G?nter Theisgen
date Wed Feb 13 17:05:23 2019 +0100 (2019-02-13)
parents 60d3db644e56
children 43efe9d946aa
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://cvs.nongnu.org/"
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 }