wok view cssc/receipt @ rev 9619

Up: py3k to 3.2. Added CVE-2011-1521 security fix. Also added pyconfig.h to py3k so python3 works. Nothing depends on this package yet so updating it will not cause any problems.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 18 15:39:33 2011 +0000 (2011-04-18)
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 }