wok view tree/receipt @ rev 22781

updated freetype and freetype-dev (2.6.4 -> 2.10.1)
author Hans-G?nter Theisgen
date Sun Jan 26 09:26:49 2020 +0100 (2020-01-26)
parents e0a7c1d94e80
children 095836df71b7
line source
1 # SliTaz package receipt.
3 PACKAGE="tree"
4 VERSION="1.8.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Recursive directory listing program."
7 MAINTAINER="MikeDSmith25@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/pyr/tree"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="ftp://mama.indstate.edu/linux/tree/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 make &&
18 make install \
19 BINDIR=$DESTDIR/usr/bin \
20 MANDIR=$DESTDIR/usr/share/man
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }