wok-6.x annotate fossil/receipt @ rev 24510
updated efibootmgr (16 -> 17)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Feb 21 06:58:51 2022 +0100 (2022-02-21) |
parents | d3cfd25843be |
children | 80f721de4db7 |
rev | line source |
---|---|
pascal@14166 | 1 # SliTaz package receipt. |
pascal@14166 | 2 |
pascal@14166 | 3 PACKAGE="fossil" |
pascal@23958 | 4 VERSION="2.12.1" |
pascal@14166 | 5 CATEGORY="development" |
pascal@14166 | 6 SHORT_DESC="Simple, high-reliability, distributed software configuration management." |
pascal@14166 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15215 | 8 LICENSE="BSD" |
Hans-G?nter@20933 | 9 WEB_SITE="https://www.fossil-scm.org/index.html" |
Hans-G?nter@20933 | 10 |
Hans-G?nter@20933 | 11 TARBALL="$PACKAGE-src-$VERSION.tar.gz" |
Hans-G?nter@20933 | 12 WGET_URL="${WEB_SITE}/uv/$TARBALL" |
pascal@14166 | 13 |
Hans-G?nter@22769 | 14 DEPENDS="libcrypto libssl zlib" |
Hans-G?nter@20933 | 15 BUILD_DEPENDS="fuse-dev openssl-dev zlib-dev" |
pascal@14166 | 16 |
pascal@23958 | 17 current_version() |
pascal@23958 | 18 { |
pascal@23958 | 19 wget -O - $WEB_SITE 2>/dev/null | \ |
pascal@23958 | 20 sed '/Latest Release/!d;s|.*: ||;s| .*||' |
pascal@23958 | 21 } |
pascal@23958 | 22 |
pascal@14166 | 23 # Rules to configure and make the package. |
pascal@14166 | 24 compile_rules() |
pascal@14166 | 25 { |
Hans-G?nter@22769 | 26 ./configure \ |
Hans-G?nter@22769 | 27 --prefix=/usr \ |
Hans-G?nter@20933 | 28 $CONFIGURE_ARGS && |
Hans-G?nter@20933 | 29 make -j 1 && |
pascal@14166 | 30 make DESTDIR=$DESTDIR install |
pascal@14166 | 31 } |
pascal@14166 | 32 |
pascal@14166 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14166 | 34 genpkg_rules() |
pascal@14166 | 35 { |
pascal@23958 | 36 mkdir -p $install/usr/share/man/man1 |
pascal@23958 | 37 cp $src/fossil.1 $install/usr/share/man/man1 |
pascal@14166 | 38 cp -a $install/usr $fs/ |
pascal@14166 | 39 } |