jhead: new port

This commit is contained in:
Antti Nykanen 2008-06-29 20:51:22 +03:00
parent 65187651ca
commit db8bb883c6
3 changed files with 26 additions and 0 deletions

6
jhead/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/jhead
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/jhead.1.gz

1
jhead/.md5sum Normal file
View File

@ -0,0 +1 @@
ef2f3233e22ba054c90ba33068cb0a70 jhead-2.82.tar.gz

19
jhead/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: EXIF JPEG header manipulation tool
# URL: http://www.sentex.net/~mwandel/jhead/
# Maintainer: Antti Nykanen, aon at iki dot fi
# Depends on:
name=jhead
version=2.82
release=1
source=(http://www.sentex.net/~mwandel/$name/$name-$version.tar.gz)
build() {
cd $name-$version
sed -i "s:-O3:${CFLAGS}:" makefile
make
install -d -m 0755 $PKG/usr/bin
install -d -m 0755 $PKG/usr/man/man1
install -m 0755 $name $PKG/usr/bin/
install -m 0644 $name.1.gz $PKG/usr/man/man1/
}