wok annotate cvs/receipt @ rev 3599
iFax: amsn WGET_URL
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Jun 28 21:33:29 2009 +0200 (2009-06-28) |
parents | 494005a36f9a |
children | e1cb4a66b95e |
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" |
pascal@2610 | 8 DEPENDS="libcomerr 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 |
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 \ |
pascal@2610 | 18 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2610 | 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 |