blob: d8d893331d8bfed155e65b4fada683868ac9ded4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Lire, ecrire, editer les meta-informations des photos
# URL: http://www.sno.phy.queensu.ca/~phil/exiftool/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=p5-exiftool
version=8.02
release=1
source=(http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-$version.tar.gz)
build() {
cd Image-ExifTool-$version
perl Makefile.PL
make
make DESTDIR=$PKG install
find $PKG -name perllocal.pod | xargs rm
find $PKG -empty | xargs rmdir -p ||:
}
|