wok view cvs/receipt @ rev 21534

consolekit2 modified BUILD_DEPENDS
author Hans-G?nter Theisgen
date Sun May 05 11:13:36 2019 +0100 (2019-05-05)
parents 43efe9d946aa
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="cvs"
4 VERSION="1.12.13"
5 CATEGORY="development"
6 TAGS="version-control versioning"
7 SHORT_DESC="Concurrent Versions System"
8 MAINTAINER="erjo@slitaz.org"
9 LICENSE="GPL"
10 WEB_SITE="https://nongnu.org/cvs/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="http://ftp.gnu.org/non-gnu/$PACKAGE/source/feature/$VERSION/$TARBALL"
15 DEPENDS="libcomerr libcomerr3 libcrypto libkrb5"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 -C \
22 --prefix=/usr \
23 --with-ssh \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make -j 1 DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp -a $install/usr/bin/cvs* $fs/usr/bin
35 }