wok annotate cvs/receipt @ rev 13253

syslinux: updates locales
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 15 21:33:42 2012 +0200 (2012-08-15)
parents c28598b27ff5
children eb8067417980
rev   line source
erjo@443 1 # SliTaz package receipt.
erjo@443 2
erjo@443 3 PACKAGE="cvs"
erjo@2957 4 VERSION="1.11.23"
pascal@742 5 CATEGORY="development"
erjo@443 6 SHORT_DESC="Concurrent Versions System"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@7981 8 DEPENDS="libcomerr libcomerr3 libcrypto libkrb5"
erjo@443 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@443 10 WEB_SITE="http://ximbiot.com/cvs/"
erjo@2957 11 WGET_URL=""http://ftp.gnu.org/non-gnu/cvs/source/stable/$VERSION/$TARBALL
jozee@4933 12 TAGS="version-control versioning"
erjo@443 13
erjo@443 14 # Rules to configure and make the package.
erjo@443 15 compile_rules()
erjo@443 16 {
erjo@443 17 cd $src
erjo@4437 18 ./configure -C --prefix=/usr \
erjo@7981 19 --with-ssh \
erjo@7981 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@2610 21 make &&
erjo@443 22 make DESTDIR=$PWD/_pkg install
erjo@443 23 }
erjo@443 24
erjo@443 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@443 26 genpkg_rules()
erjo@443 27 {
erjo@443 28 mkdir -p $fs/usr/bin
erjo@443 29 cp -a $_pkg/usr/bin/cvs* $fs/usr/bin
erjo@443 30 }
erjo@443 31