wok annotate fzy/receipt @ rev 19460

Up fzy (0.7)
author Paul Issott <paul@slitaz.org>
date Sun Oct 23 08:53:53 2016 +0100 (2016-10-23)
parents b05433a98d60
children d3e38f335527
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