wok-next annotate fzy/receipt @ rev 19591
Up dialog (1.3-20160828).
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Jan 21 15:37:43 2017 +0200 (2017-01-21) |
parents | b05433a98d60 |
children | 24a54f99ff54 |
rev | line source |
---|---|
paul@19150 | 1 # SliTaz package receipt. |
paul@19150 | 2 |
paul@19150 | 3 PACKAGE="fzy" |
paul@19460 | 4 VERSION="0.7" |
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 |