You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.9 KiB
Bash
116 lines
2.9 KiB
Bash
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
##
|
||
|
# buildXMPsdk.sh
|
||
|
# TODO:
|
||
|
# 1) Command-line parser for options such as:
|
||
|
# version of xmpsdk (2014, 2016)
|
||
|
# build options (64/32 static/dynamic debug/release)
|
||
|
# help
|
||
|
# 2) Cygwin support (in progress)
|
||
|
# 3) Write buildXMPsdk.cmd (for MSVC)
|
||
|
##
|
||
|
|
||
|
uname=$(uname -o)
|
||
|
case "$uname" in
|
||
|
Darwin|GNU/Linux|Cygwin) ;;
|
||
|
*) echo "*** unsupported platform $uname ***"
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
##
|
||
|
# Download the code from Adobe
|
||
|
if [ ! -e Adobe ]; then (
|
||
|
mkdir Adobe
|
||
|
cd Adobe
|
||
|
curl -O http://download.macromedia.com/pub/developer/xmp/sdk/XMP-Toolkit-SDK-CC201607.zip
|
||
|
# cp ~/important/XMP-Toolkit-SDK-CC201607.zip .
|
||
|
unzip XMP-Toolkit-SDK-CC201607.zip
|
||
|
) fi
|
||
|
|
||
|
##
|
||
|
# copy third-party code into SDK
|
||
|
(
|
||
|
find third-party -type d -maxdepth 1 -exec cp -R '{}' Adobe/XMP-Toolkit-SDK-CC201607/third-party ';'
|
||
|
)
|
||
|
|
||
|
##
|
||
|
# generate Makefile and build
|
||
|
( cd Adobe/XMP-Toolkit-SDK-CC201607/build
|
||
|
##
|
||
|
# Tweak the code (depends on platform)
|
||
|
case "$uname" in
|
||
|
GNU/Linux)
|
||
|
# modify ProductConfig.cmake (don't link libssp.a)
|
||
|
f=ProductConfig.cmake
|
||
|
if [ -e $f.orig ]; then mv $f.orig $f ; fi ; cp $f $f.orig
|
||
|
sed -E -e 's? \$\{XMP_GCC_LIBPATH\}/libssp.a??g' $f.orig > $f
|
||
|
|
||
|
# copy resources
|
||
|
for f in XMPFiles XMPCore; do
|
||
|
cp ../$f/resource/linux/* ../$f/resource
|
||
|
done
|
||
|
;;
|
||
|
|
||
|
Cygwin)
|
||
|
f=../source/Host_IO-POSIX.cpp
|
||
|
if [ -e $f.orig ]; then mv $f.orig $f ; fi ; cp $f $f.orig
|
||
|
|
||
|
sed -E -e $'s?// Writeable?// Writeable~#include <windows.h>~#ifndef PATH_MAX~#define PATH_MAX 512~#endif?' $f.orig | tr "~" "\n" > $f
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
cmake . -G "Unix Makefiles" \
|
||
|
-DXMP_ENABLE_SECURE_SETTINGS=OFF \
|
||
|
-DXMP_BUILD_STATIC=1 \
|
||
|
-DCMAKE_CL_64=ON \
|
||
|
-DCMAKE_BUILD_TYPE=Release
|
||
|
make
|
||
|
|
||
|
echo '3' | ./GenerateXMPToolkitSDK_mac.sh
|
||
|
find . -name XMPToolkitSDK64.xcodeproj -execdir xcodebuild {} \;
|
||
|
)
|
||
|
|
||
|
##
|
||
|
# copy headers and built libraries
|
||
|
(
|
||
|
rm -rf include
|
||
|
cp -R Adobe/XMP-Toolkit-SDK-CC201607/public/include include
|
||
|
|
||
|
# report archives we can see
|
||
|
cd Adobe/XMP-Toolkit-SDK-CC201607
|
||
|
find public -name "*.a" -o -name "*.ar" | xargs ls -alt
|
||
|
cd ../..
|
||
|
|
||
|
# move the library/archives into xmpsdk
|
||
|
case "$uname" in
|
||
|
Cygwin99|GNU/Linux)
|
||
|
find Adobe/XMP-Toolkit-SDK-CC201607/public -name "*.ar" -exec cp {} . ';'
|
||
|
./ren-lnx.sh
|
||
|
;;
|
||
|
|
||
|
Darwin)
|
||
|
find Adobe/XMP-Toolkit-SDK-CC201607/public -name "*.a" -exec cp {} . ';'
|
||
|
./ren-mac.sh
|
||
|
;;
|
||
|
esac
|
||
|
ls -alt *.a
|
||
|
|
||
|
if [ 1 == 2 ]; then
|
||
|
# combine libraries into libxmpsdk.a
|
||
|
mkdir foo
|
||
|
mv *.a foo
|
||
|
cd foo
|
||
|
for i in *.a; do ar -x $i ; rm -rf $i ; done
|
||
|
ar -cq libxmpsdk.a *.o
|
||
|
mv libxmpsdk.a ..
|
||
|
cd ..
|
||
|
rm -rf foo
|
||
|
ls -alt *.a
|
||
|
fi
|
||
|
)
|
||
|
|
||
|
# That's all Folks!
|
||
|
##
|