wok view ytree/receipt @ rev 8647

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