Update Travis to install exiftool 10.20
This commit is contained in:
parent
0e9237366a
commit
b89a0d2c2f
|
@ -15,6 +15,14 @@ install:
|
||||||
before_script:
|
before_script:
|
||||||
- "mkdir ~/.elodie"
|
- "mkdir ~/.elodie"
|
||||||
- "sed 's/your-api-key-goes-here/x8wQLqGhW7qK3sFpjYtVTogVtoMK0S8s/g' config.ini-sample > ~/.elodie/config.ini"
|
- "sed 's/your-api-key-goes-here/x8wQLqGhW7qK3sFpjYtVTogVtoMK0S8s/g' config.ini-sample > ~/.elodie/config.ini"
|
||||||
|
# Get exiftool 10.20 installed
|
||||||
|
- "export ELODIE_DIR=${PWD}"
|
||||||
|
- "wget http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-10.20.tar.gz"
|
||||||
|
- "gzip -dc Image-ExifTool-10.20.tar.gz | tar -xf -"
|
||||||
|
- "cd Image-ExifTool-10.20"
|
||||||
|
- "perl Makefile.PL"
|
||||||
|
- "sudo make install"
|
||||||
|
- "cd ${ELODIE_DIR}"
|
||||||
after_success:
|
after_success:
|
||||||
- "coveralls"
|
- "coveralls"
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -11,7 +11,7 @@ Getting started takes just a few minutes.
|
||||||
|
|
||||||
Elodie relies on the great [ExifTool library by Phil Harvey](http://www.sno.phy.queensu.ca/~phil/exiftool/). You'll need to install it for your platform.
|
Elodie relies on the great [ExifTool library by Phil Harvey](http://www.sno.phy.queensu.ca/~phil/exiftool/). You'll need to install it for your platform.
|
||||||
|
|
||||||
Some features for video files will only work with newer versions of ExifTool and have been tested on version 10.15 or higher. Check your version by typing `exiftool -ver` and see the [manual installation instructions for ExifTool](http://www.sno.phy.queensu.ca/~phil/exiftool/install.html#Unix) if needed.
|
Some features for video files will only work with newer versions of ExifTool and have been tested on version 10.20 or higher. Check your version by typing `exiftool -ver` and see the [manual installation instructions for ExifTool](http://www.sno.phy.queensu.ca/~phil/exiftool/install.html#Unix) if needed.
|
||||||
|
|
||||||
```
|
```
|
||||||
# OSX (uses homebrew, http://brew.sh/)
|
# OSX (uses homebrew, http://brew.sh/)
|
||||||
|
|
Loading…
Reference in New Issue