19 lines
387 B
Plaintext
19 lines
387 B
Plaintext
# Description: xxd creates a hex dump of a given file or standard input.
|
|
# URL: N/A
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
|
|
name=xxd
|
|
version=1.10
|
|
release=1
|
|
source=(http://grail.cba.csuohio.edu/~somos/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
make
|
|
|
|
install -d $PKG/usr/{bin,man/man1}
|
|
install -m 755 xxd $PKG/usr/bin
|
|
install -m 644 xxd.1 $PKG/usr/man/man1
|
|
}
|