wok-current annotate fzy/receipt @ rev 20691
updated firefox-official* (64.0 -> 65.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Feb 01 15:17:34 2019 +0100 (2019-02-01) |
parents | d3e38f335527 |
children | 085da06d2c37 |
rev | line source |
---|---|
paul@19150 | 1 # SliTaz package receipt. |
paul@19150 | 2 |
paul@19150 | 3 PACKAGE="fzy" |
paul@19937 | 4 VERSION="0.9" |
paul@19150 | 5 CATEGORY="utilities" |
paul@19150 | 6 SHORT_DESC="A fast, simple fuzzy finder." |
paul@19150 | 7 MAINTAINER="paul@slitaz.org" |
paul@19150 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@19150 | 9 WEB_SITE="https://github.com/jhawthorn/fzy" |
paul@19150 | 10 WGET_URL="git|git://github.com/jhawthorn/fzy" |
paul@19150 | 11 |
paul@19150 | 12 DEPENDS="" |
paul@19150 | 13 BUILD_DEPENDS="git bzip2" |
paul@19150 | 14 |
paul@19150 | 15 # Rules to configure and make the package. |
paul@19150 | 16 compile_rules() |
paul@19150 | 17 { |
paul@19150 | 18 make |
paul@19150 | 19 make PREFIX=/usr DESTDIR=$DESTDIR install |
paul@19150 | 20 } |
paul@19150 | 21 |
paul@19150 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@19150 | 23 genpkg_rules() |
paul@19150 | 24 { |
paul@19150 | 25 mkdir -p $fs/usr |
paul@19150 | 26 cp -a $install/usr/bin $fs/usr |
paul@19150 | 27 } |
paul@19150 | 28 |