wok view fzy/receipt @ rev 24974

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 02 11:23:24 2022 +0000 (24 months ago)
parents 82d54eca72be
children 20ad21d5532c
line source
1 # SliTaz package receipt.
3 PACKAGE="fzy"
4 VERSION="1.0"
5 CATEGORY="utilities"
6 SHORT_DESC="A fast, simple fuzzy finder."
7 LICENSE="MIT"
8 MAINTAINER="paul@slitaz.org"
9 WEB_SITE="https://github.com/jhawthorn/fzy"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/jhawthorn/$PACKAGE/releases/download/$VERSION/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 current_version()
18 {
19 wget -O - ${WGET_URL%/down*}s 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 make -j 1 &&
27 make PREFIX=/usr DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }