wok view cssc/receipt @ rev 14908

slitaz-i18n: rewrite locale-pack.functions; slitaz-configs: now generate openbox desktop menu using po files; locale-*: update using new locale-pack.functions (FIXME: post_remove)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 03 17:37:48 2013 +0300 (2013-08-03)
parents
children 7abf990db309
line source
1 # SliTaz package receipt.
3 PACKAGE="cssc"
4 VERSION="1.3.0"
5 CATEGORY="development"
6 SHORT_DESC="GNU compatibly stupid source control : SCCS."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="CSSC"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/cssc/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="gcc-lib-base"
13 TAGS="rcs sccs version-control versioning"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --libexecdir=/usr/lib/$PACKAGE \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib $fs/usr
33 }