wok annotate ytree/receipt @ rev 8438

Fixed freeimage.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 06 03:04:08 2011 +0000 (2011-02-06)
parents 28e65b8aa704
children 02bbaa9d12ba
rev   line source
allan316@2817 1 # SliTaz package receipt.
allan316@2817 2
allan316@2817 3 PACKAGE="ytree"
allan316@2817 4 VERSION="1.92"
allan316@2817 5 CATEGORY="utilities"
allan316@2817 6 SHORT_DESC="file manager for file and archives"
allan316@2817 7 MAINTAINER="allan316@gmail.com"
allan316@2817 8 BUILD_DEPENDS="readline readline-dev ncurses-dev"
allan316@2817 9 DEPENDS="readline ncurses"
allan316@2817 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
allan316@2817 11 WEB_SITE="http://www.han.de/~werner/ytree.html"
allan316@2817 12 WGET_URL="http://www.han.de/~werner/$TARBALL"
jozee@4977 13 TAGS="file-manager file-browser"
allan316@2817 14
allan316@2817 15 # Rules to configure and make the package.
allan316@2817 16 compile_rules()
allan316@2817 17 {
allan316@2817 18 cd $src
allan316@2817 19 make
allan316@2817 20 }
allan316@2817 21
allan316@2817 22 # Rules to gen a SliTaz package suitable for Tazpkg.
allan316@2817 23 genpkg_rules()
allan316@2817 24 {
allan316@2817 25 mkdir -p $fs/usr/bin
allan316@2817 26 cp -a $src/ytree $fs/usr/bin
allan316@2817 27 strip -s $fs/usr/bin/*
allan316@2817 28 }
allan316@2817 29