xxd: cleanup

This commit is contained in:
Tilman Sauerbeck 2006-04-08 15:07:48 +00:00
parent 363dceba9a
commit 18a0c42a72
2 changed files with 7 additions and 8 deletions

View File

@ -3,4 +3,4 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/xxd
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-r--r--r-- root/root usr/man/man1/xxd.1.gz
-rw-r--r-- root/root usr/man/man1/xxd.1.gz

View File

@ -1,5 +1,5 @@
# Description: xxd creates a hex dump of a given file or standard input.
# URL:
# URL: N/A
# Maintainer: Tilman Sauerbeck tilman at code-monkey dot de
name=xxd
@ -9,11 +9,10 @@ source=(http://grail.cba.csuohio.edu/~somos/$name-$version.tar.gz)
build() {
cd $name-$version
make
mkdir -p $PKG/usr/bin
mkdir -p $PKG/usr/man/man1
cp xxd $PKG/usr/bin
cp xxd.1 $PKG/usr/man/man1
install -d $PKG/usr/{bin,man/man1}
install -m 755 xxd $PKG/usr/bin
install -m 644 xxd.1 $PKG/usr/man/man1
}