wok view cvs/receipt @ rev 16324

connman-ui: set a meaningful name to the source for mirror:/source/packages-cooking/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 10 11:04:26 2014 +0000 (2014-04-10)
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 }