blob: 4a7000eca3e03186edb5bb0731bcb634d3bd33d6 (
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: fred.galusik at gmail dot com
# Depends on: perl
name=p5-exiftool
version=7.71
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 ||:
}
|