wok view cssc/receipt @ rev 7847

Add: weechat v0.3.3(from wok-undigest/weechat)
author Liu Peng <rocky@slitaz.org>
date Tue Dec 28 16:11:28 2010 +0000 (2010-12-28)
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 }