wok annotate tree/receipt @ rev 21858
Fix re2c build
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Sep 18 19:26:59 2019 +0200 (2019-09-18) |
parents | 600aaedb561d |
children | e0a7c1d94e80 |
rev | line source |
---|---|
MikeDSmith25@1401 | 1 # SliTaz package receipt. |
MikeDSmith25@1401 | 2 |
MikeDSmith25@1401 | 3 PACKAGE="tree" |
slaxemulator@10999 | 4 VERSION="1.6.0" |
MikeDSmith25@1401 | 5 CATEGORY="utilities" |
MikeDSmith25@1401 | 6 SHORT_DESC="Recursive directory listing program" |
MikeDSmith25@1401 | 7 MAINTAINER="MikeDSmith25@gmail.com" |
pascal@15590 | 8 LICENSE="GPL2" |
MikeDSmith25@1401 | 9 TARBALL="$PACKAGE-$VERSION.tgz" |
pascal@20684 | 10 WEB_SITE="https://github.com/adsr/tree" |
MikeDSmith25@1401 | 11 WGET_URL="ftp://mama.indstate.edu/linux/tree/$TARBALL" |
MikeDSmith25@1401 | 12 |
MikeDSmith25@1401 | 13 # Rules to configure and make the package. |
MikeDSmith25@1401 | 14 compile_rules() |
MikeDSmith25@1401 | 15 { |
MikeDSmith25@1401 | 16 cd $src |
MikeDSmith25@1401 | 17 make |
slaxemulator@10999 | 18 make BINDIR=$DESTDIR/usr/bin MANDIR=$DESTDIR/usr/share/man install |
MikeDSmith25@1401 | 19 } |
MikeDSmith25@1401 | 20 |
MikeDSmith25@1401 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
MikeDSmith25@1401 | 22 genpkg_rules() |
MikeDSmith25@1401 | 23 { |
MikeDSmith25@1401 | 24 mkdir -p $fs/usr |
slaxemulator@10999 | 25 cp -a $install/usr/bin $fs/usr |
MikeDSmith25@1401 | 26 } |
MikeDSmith25@1401 | 27 |