-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (#3) [Travis-CI] Started travis * (#3) [Travis-CI] swift version * (#3) [Travis-CI] builder submodule and travis update * (#3) [Travis-CI] makefile * (#3) [Travis-CI] installation script * (#3) [Travis-CI] update travis.yml * (#3) [Travis-CI] build script * (#3) badges * (#3) new package builder * update package * remove --force * (#3) file moved * (#3) (#4) Travis tweaks * Update .travis.yml * Update .travis.yml * Update travis * Zlib * Zlib * Update .travis.yml * Update .travis.yml * Update .travis.yml * install script * Update README.md * Update README.md * Update install-imagemagick.sh
- Loading branch information
Showing
11 changed files
with
79 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "Package-Builder"] | ||
path = Package-Builder | ||
url = https://github.com/naithar/Package-Builder.git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0.1 | ||
3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
matrix: | ||
include: | ||
- os: linux | ||
dist: trusty | ||
sudo: required | ||
- os: osx | ||
osx_image: xcode8 | ||
sudo: required | ||
|
||
before_install: | ||
- sh ./common/install-imagemagick.sh | ||
- git submodule update --init --remote --merge --recursive | ||
|
||
script: | ||
- ./Package-Builder/build-package.sh $TRAVIS_BUILD_DIR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export BUILDER_SCRIPTS_DIR=Package-Builder/build | ||
|
||
-include Package-Builder/build/Makefile | ||
|
||
Package-Builder/build/Makefile: | ||
@echo --- Fetching Package-Builder submodule | ||
git submodule update --init --remote --merge --recursive |
Submodule Package-Builder
added at
d2d203
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
swift build -Xcc -I/usr/local/include/ImageMagick-6/ -Xlinker -L/usr/local/lib/ -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
swift build -Xcc -I/usr/local/include/ImageMagick-6/ -Xlinker -L/usr/local/lib/ -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
echo ">> Installing ZLIB" | ||
|
||
curl -OL https://www.imagemagick.org/download/delegates/zlib-1.2.8.tar.gz | ||
tar -xzf zlib-1.2.8.tar.gz | ||
cd zlib-1.2.8 | ||
./configure --prefix=/usr/local | ||
make | ||
sudo make install | ||
cd .. | ||
rm -rf zlib-1.2.8* | ||
|
||
echo ">> Installing ImageMagick 6.9.6-5" | ||
|
||
curl -OL https://www.imagemagick.org/download/ImageMagick-6.9.6-5.tar.gz | ||
tar -xzf ImageMagick-6.9.6-5.tar.gz | ||
cd ImageMagick-6.9.6-5 | ||
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp --with-gs-font-dir=/usr/local/share/ghostscript/fonts | ||
make | ||
sudo make install | ||
cd .. | ||
rm -rf ImageMagick-6.9.6-5* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
swift test -Xcc -I/usr/local/include/ImageMagick-6/ -Xlinker -L/usr/local/lib/ -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
swift test -Xcc -I/usr/local/include/ImageMagick-6/ -Xlinker -L/usr/local/lib/ -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16 |