dcraw: 9.22 -> 9.26.0

This commit is contained in:
Danny Rawlins 2016-09-08 10:27:03 +10:00
parent 191d877cc3
commit 1f8806c91e
3 changed files with 10 additions and 10 deletions

View File

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

View File

@ -1 +1 @@
de1e7e36368228f7b5dbe062e9d8dac7 dcraw-9.22.tar.gz
693207b594b35c5038e09ea316287ed6 dcraw-9.26.0.tar.gz

View File

@ -4,16 +4,15 @@
# Depends on: lcms2 jasper
name=dcraw
version=9.22
version=9.26.0
release=1
source=(http://www.cybercom.net/~dcoffin/dcraw/archive/$name-$version.tar.gz)
build() {
cd $name
gcc $CFLAGS -o dcraw dcraw.c \
-Wall -Wno-unused-result -Wno-array-bounds -Wno-maybe-uninitialized \
-Wno-aggressive-loop-optimizations -Wno-unused-but-set-variable \
gcc $CFLAGS $LDFLAGS -o dcraw dcraw.c \
-Wall \
-lm -ljasper -ljpeg -llcms2
install -m 644 -D dcraw.1 $PKG/usr/man/man1/dcraw.1
install -m 755 -D dcraw $PKG/usr/bin/dcraw
install -m 0644 -D dcraw.1 $PKG/usr/share/man/man1/dcraw.1
install -m 0755 -D dcraw $PKG/usr/bin/dcraw
}