wok view fzy/receipt @ rev 24727

cookutils: add repo-cooking (used by tank)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 15 10:59:31 2022 +0000 (2022-03-15)
parents 5ea0ce1cecc0
children e1e1678c5265
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/release/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 }