wok view fossil/receipt @ rev 23801

created recipes for xcb-util-cursor and xcb-util-cursor-dev
author Hans-G?nter Theisgen
date Sun May 24 07:21:45 2020 +0100 (2020-05-24)
parents 50bc0ee67b12
children af18e65b46b9
line source
1 # SliTaz package receipt.
3 PACKAGE="fossil"
4 VERSION="2.10"
5 CATEGORY="development"
6 SHORT_DESC="Simple, high-reliability, distributed software configuration management."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.fossil-scm.org/index.html"
11 TARBALL="$PACKAGE-src-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}/uv/$TARBALL"
14 DEPENDS="libcrypto libssl zlib"
15 BUILD_DEPENDS="fuse-dev openssl-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs/
31 }