diff --git a/dcraw/.footprint b/dcraw/.footprint index 85c8d0554..77f9e71db 100644 --- a/dcraw/.footprint +++ b/dcraw/.footprint @@ -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 diff --git a/dcraw/.md5sum b/dcraw/.md5sum index 86941e9b4..13d3565ef 100644 --- a/dcraw/.md5sum +++ b/dcraw/.md5sum @@ -1 +1 @@ -de1e7e36368228f7b5dbe062e9d8dac7 dcraw-9.22.tar.gz +693207b594b35c5038e09ea316287ed6 dcraw-9.26.0.tar.gz diff --git a/dcraw/Pkgfile b/dcraw/Pkgfile index dbe9aa175..89380dd2e 100644 --- a/dcraw/Pkgfile +++ b/dcraw/Pkgfile @@ -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 }