wok-6.x annotate fzy/receipt @ rev 19352
Up ncdu (1.11)
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sun Jul 24 19:13:10 2016 +0100 (2016-07-24) |
parents | |
children | cf0064551e72 |
rev | line source |
---|---|
paul@19150 | 1 # SliTaz package receipt. |
paul@19150 | 2 |
paul@19150 | 3 PACKAGE="fzy" |
paul@19150 | 4 VERSION="20160522" |
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 |