wok view cssc/receipt @ rev 23943

Up cryptsetup-dev (2.3.4), lzham_codec (1_0_stable1), slitaz-boot-scripts (466), tazlito (527)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 17 10:31:38 2020 +0000 (2020-09-17)
parents dead8955c3ca
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="cssc"
4 VERSION="1.4.1"
5 CATEGORY="development"
6 TAGS="rcs sccs version-control versioning"
7 SHORT_DESC="GNU compatibly stupid source control : SCCS."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.gnu.org/software/cssc/"
12 SOURCE="CSSC"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
16 DEPENDS="gcc83-lib-base"
17 BUILD_DEPENDS="gcc83"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 CC=gcc-83 \
24 CXX=g++-83 \
25 --prefix=/usr \
26 --infodir=/usr/share/info \
27 --libexecdir=/usr/lib/$PACKAGE \
28 --mandir=/usr/share/man \
29 --enable-binary \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/lib $fs/usr
42 }