opt/xxd/Pkgfile

19 lines
387 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: xxd creates a hex dump of a given file or standard input.
2006-04-08 17:07:48 +02:00
# URL: N/A
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
2006-02-23 16:26:10 +01:00
name=xxd
version=1.10
release=1
source=(http://grail.cba.csuohio.edu/~somos/$name-$version.tar.gz)
2006-04-08 17:07:48 +02:00
build() {
2006-02-23 16:26:10 +01:00
cd $name-$version
2006-04-08 17:07:48 +02:00
make
2006-02-23 16:26:10 +01:00
2006-04-08 17:07:48 +02:00
install -d $PKG/usr/{bin,man/man1}
install -m 755 xxd $PKG/usr/bin
install -m 644 xxd.1 $PKG/usr/man/man1
2006-02-23 16:26:10 +01:00
}