2021-06-16 19:15:24 -05:00
|
|
|
# Description: A recursive directory listing command that produces a depth indented listing of files
|
2021-06-16 19:10:42 -05:00
|
|
|
# URL: http://mama.indstate.edu/users/ice/tree/
|
2021-06-16 19:15:24 -05:00
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
2021-06-16 19:10:42 -05:00
|
|
|
|
|
|
|
name=tree
|
|
|
|
version=1.8.0
|
|
|
|
release=1
|
2021-06-16 19:15:24 -05:00
|
|
|
source=(http://mama.indstate.edu/users/ice/$name/src/$name-$version.tgz)
|
2021-06-16 19:10:42 -05:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
sed "s|CFLAGS=|CFLAGS=$CFLAGS |" -i Makefile
|
|
|
|
make
|
|
|
|
|
|
|
|
install -D -m 0755 $name $PKG/usr/bin/$name
|
|
|
|
install -D -m 0644 doc/$name.1 $PKG/usr/share/man/man1/$name.1
|
|
|
|
}
|