wok annotate fzy/receipt @ rev 20168
Up mplayer-cli (1.3.0)
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Thu Jan 11 21:11:24 2018 +0100 (2018-01-11) |
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 |