Merge commit '638ecc4cde79b0296f2e04f683ca4cb881c28f36' as 'rtengine/libraw'

This commit is contained in:
Lawrence Lee
2023-11-12 11:49:00 -08:00
213 changed files with 77043 additions and 0 deletions

18
rtengine/libraw/mkdist.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
if [ -d CVS ] ; then
echo 'Use mkdist script in cvs export-ed dirs'
else
if [ -f Makefile.devel ] ; then
autoreconf --install
mkdir dcraw
cd dcraw
wget https://www.dechifro.org/dcraw/dcraw.c
cd ..
rm -f clist2c.pl clist2html.pl
rm -f Makefile.devel
rm mkdist.sh export-dist.sh
else
echo 'Wrong directory or mkdist.sh already executed'
fi
fi