wok view cssc/receipt @ rev 20518

Up openssh (7.9p1), opus (1.3), opus-tools (0.2), zstd (1.3.7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 02 15:37:03 2018 +0100 (2018-11-02)
parents 7abf990db309
children 8d95e2627925
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 LICENSE="GPL3"
9 SOURCE="CSSC"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/cssc/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="rcs sccs version-control versioning"
15 DEPENDS="gcc-lib-base"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --libexecdir=/usr/lib/$PACKAGE \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib $fs/usr
35 }