forked from pool/dcraw
52d6e9db0c
update to version 9.08, Spec file updates, Updates in update_dcraw script OBS-URL: https://build.opensuse.org/request/show/70247 OBS-URL: https://build.opensuse.org/package/show/graphics/dcraw?expand=0&rev=18
22 lines
1016 B
Bash
22 lines
1016 B
Bash
#! /bin/sh
|
|
|
|
# Call this script to update dcraw files (except the main package) to latest version.
|
|
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/parse.c
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/fujiturn.c
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/.badpixels
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/rawphoto.c
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/clean_crw.c
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/fuji_green.c
|
|
mv .badpixels badpixels
|
|
( URL="http://www.cybercom.net/~dcoffin/dcraw/" ; echo -e "$URL:\n" ; LC_ALL=C lynx -display_charset=utf-8 -dump "$URL" | sed '1d;3,4d' ) >README
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/RCS/dcraw.c,v
|
|
rlog dcraw.c >dcraw.log
|
|
wget -N http://www.cybercom.net/~dcoffin/dcraw/RCS/parse.c,v
|
|
rlog parse.c >parse.log
|
|
echo
|
|
echo "Please check, whether packaged file list is up to date."
|
|
echo "You can look at dcraw.log and parse.log for the complete change log."
|
|
echo "Before submit, please call:"
|
|
echo "rm dcraw.c,v dcraw.log parse.c,v parse.log"
|