wok annotate cvs/receipt @ rev 2471

curl: --without-libidn
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 15 19:54:47 2009 +0100 (2009-03-15)
parents 357c9dba020c
children 494005a36f9a
rev   line source
erjo@443 1 # SliTaz package receipt.
erjo@443 2
erjo@443 3 PACKAGE="cvs"
erjo@443 4 VERSION="1.11.22"
pascal@742 5 CATEGORY="development"
erjo@443 6 SHORT_DESC="Concurrent Versions System"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@443 8 DEPENDS=""
erjo@443 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@443 10 WEB_SITE="http://ximbiot.com/cvs/"
erjo@443 11 WGET_URL=""http://ftp.gnu.org/non-gnu/cvs/source/stable/1.11.22/$TARBALL
erjo@443 12
erjo@443 13 # Rules to configure and make the package.
erjo@443 14 compile_rules()
erjo@443 15 {
erjo@443 16 cd $src
erjo@443 17 ./configure -C --prefix=/usr --disable-server \
erjo@443 18 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@443 19 make
erjo@443 20 make DESTDIR=$PWD/_pkg install
erjo@443 21 }
erjo@443 22
erjo@443 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@443 24 genpkg_rules()
erjo@443 25 {
erjo@443 26 mkdir -p $fs/usr/bin
erjo@443 27 cp -a $_pkg/usr/bin/cvs* $fs/usr/bin
erjo@443 28
erjo@443 29 strip -s $fs/usr/bin/cvs
erjo@443 30 }
erjo@443 31