wok annotate rcs/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 600aaedb561d
children 71360a13cd94
rev   line source
pascal@2084 1 # SliTaz package receipt.
pascal@2084 2
pascal@2084 3 PACKAGE="rcs"
Hans-G?nter@21833 4 VERSION="5.9.4"
pascal@2084 5 CATEGORY="development"
Hans-G?nter@21833 6 TAGS="cvs version-control versioning"
pascal@2084 7 SHORT_DESC="GNU Revision Control System."
pascal@2084 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15590 9 LICENSE="GPL2"
Hans-G?nter@21833 10 WEB_SITE="https://www.gnu.org/software/rcs/"
Hans-G?nter@21833 11
Hans-G?nter@21833 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@2084 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@2084 14
pascal@15590 15 DEPENDS="diffutils"
Hans-G?nter@21833 16 BUILD_DEPENDS="diffutils ed"
pascal@15590 17
pascal@2084 18 # Rules to configure and make the package.
pascal@2084 19 compile_rules()
pascal@2084 20 {
pascal@4983 21 # remove busybox/diff
pascal@5794 22 [ -L /usr/bin/diff ] && tazpkg get-install diffutils --forced
Hans-G?nter@21833 23 # sed -i 's,test -w a.d || cp /dev/null a.d 2>/dev/null,false,' \
Hans-G?nter@21833 24 # src/conf.sh
pascal@2084 25 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@2084 26 make
pascal@2084 27 }
pascal@2084 28
pascal@2084 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2084 30 genpkg_rules()
pascal@2084 31 {
pascal@2084 32 mkdir -p $fs/usr/bin
Hans-G?nter@21833 33 for p in ci co ident merge rcs rcsclean rcsdiff rcsmerge rlog
Hans-G?nter@21833 34 do
pascal@2084 35 install -c $src/src/$p $fs/usr/bin
Hans-G?nter@21833 36 done
pascal@2084 37 }