# HG changeset patch # User Eric Joseph-Alexandre # Date 1205631672 -3600 # Node ID a7d1919cdb5fe2eaacf7bf291931fd636c004c7a # Parent 436e5e7234626c7e3ddd6d5fd3b1062821659695 ADD: cvs client only. diff -r 436e5e723462 -r a7d1919cdb5f cvs/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cvs/receipt Sun Mar 16 02:41:12 2008 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="cvs" +VERSION="1.11.22" +CATEGORY="developpement" +SHORT_DESC="Concurrent Versions System" +MAINTAINER="Erjo " +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://ximbiot.com/cvs/" +WGET_URL=""http://ftp.gnu.org/non-gnu/cvs/source/stable/1.11.22/$TARBALL + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure -C --prefix=/usr --disable-server \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $_pkg/usr/bin/cvs* $fs/usr/bin + + strip -s $fs/usr/bin/cvs +} +