wok-current annotate pass/receipt @ rev 25111
updated pass (1.7.3 -> 1.7.4)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jun 25 15:00:34 2022 +0100 (2022-06-25) |
parents | e1e1678c5265 |
children |
rev | line source |
---|---|
pascal@18565 | 1 # SliTaz package receipt. |
pascal@18565 | 2 |
pascal@18565 | 3 PACKAGE="pass" |
Hans-G?nter@25111 | 4 VERSION="1.7.4" |
pascal@18565 | 5 CATEGORY="security" |
pascal@18565 | 6 SHORT_DESC="The standard unix password manager." |
pascal@18565 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@18565 | 8 LICENSE="GPL2" |
Hans-G?nter@21661 | 9 WEB_SITE="https://www.passwordstore.org/" |
Hans-G?nter@25111 | 10 REPOLOGY="password-store" |
Hans-G?nter@21661 | 11 |
Hans-G?nter@21661 | 12 SOURCE="password-store" |
pascal@18565 | 13 TARBALL="$SOURCE-$VERSION.tar.xz" |
pascal@24974 | 14 WGET_URL="https://git.zx2c4.com/$SOURCE/snapshot/$TARBALL" |
Hans-G?nter@21661 | 15 |
Hans-G?nter@25111 | 16 SUGGESTED="git gnupg tree" |
pascal@18565 | 17 DEPENDS="bash" |
pascal@18565 | 18 |
pascal@24459 | 19 # What is the latest version available today? |
pascal@24459 | 20 current_version() |
pascal@24459 | 21 { |
pascal@24459 | 22 wget -O - ${WGET_URL%/*/*}/ 2>/dev/null | \ |
pascal@24459 | 23 sed "/latest/d;/$SOURCE-[0-9]/!d;/zip/!d;s|.*$SOURCE-\\(.*\\).zip.*|\\1|" | sort -Vr | sed q |
pascal@24459 | 24 } |
pascal@24459 | 25 |
pascal@18565 | 26 # Rules to configure and make the package. |
pascal@18565 | 27 compile_rules() |
pascal@18565 | 28 { |
pascal@18565 | 29 make DESTDIR=$DESTDIR install |
pascal@18565 | 30 } |
pascal@18565 | 31 |
pascal@18565 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@18565 | 33 genpkg_rules() |
pascal@18565 | 34 { |
Hans-G?nter@25111 | 35 cook_copy_folders bin |
pascal@18565 | 36 } |