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 -rwxr-xr-x root/root usr/bin/xxd
drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/ 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. # 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 # Maintainer: Tilman Sauerbeck tilman at code-monkey dot de
name=xxd name=xxd
@ -7,13 +7,12 @@ version=1.10
release=1 release=1
source=(http://grail.cba.csuohio.edu/~somos/$name-$version.tar.gz) source=(http://grail.cba.csuohio.edu/~somos/$name-$version.tar.gz)
build () { build() {
cd $name-$version cd $name-$version
make make
mkdir -p $PKG/usr/bin install -d $PKG/usr/{bin,man/man1}
mkdir -p $PKG/usr/man/man1 install -m 755 xxd $PKG/usr/bin
install -m 644 xxd.1 $PKG/usr/man/man1
cp xxd $PKG/usr/bin
cp xxd.1 $PKG/usr/man/man1
} }