blob: 480bafd4a2212972e33e1dbac07a21d9b7ffaf19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=perl-image-exiftool
pkgver=11.79
pkgrel=0
pkgdesc="Perl module for editing exif metadata in files"
url="https://www.sno.phy.queensu.ca/~phil/exiftool"
arch="noarch"
license="Artistic-1.0-Perl GPL-1.0-or-later"
depends="perl"
makedepends="perl-dev"
subpackages="$pkgname-doc exiftool"
source="https://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-$pkgver.tar.gz"
builddir="$srcdir"/Image-ExifTool-$pkgver
build() {
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
make test
}
package() {
make DESTDIR="$pkgdir" install
# creates file collision among perl modules
find "$pkgdir" -name perllocal.pod -delete
find "$pkgdir" -name .packlist -delete
}
exiftool() {
pkgdesc="Tool for editing exif metadata in files"
depends="perl-image-exiftool"
mkdir -p "$subpkgdir"/usr
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
sha512sums="ed1e57f40e4287f7a8fd2d78c63f594c34b8cdc56fe3a46f79df96b956d9b513e7f642354b381ce9f128888973d02b84b79b7fe89c60e1b6fff09e6af18b6cae Image-ExifTool-11.79.tar.gz"
|