aboutsummaryrefslogtreecommitdiffstats
path: root/main/perl-image-exiftool/APKBUILD
blob: d9a42ae810f9f31ba521a6df7fc543b5e6a6735f (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
40
41
42
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=perl-image-exiftool
pkgver=11.65
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() {
	cd "$builddir"
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
	make
}

check() {
	cd "$builddir"
	make test
}

package() {
	cd "$builddir"
	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="7e76fddf9e25b80dfa6c0d59c5ef80708261e1d5529d40051e43ebb476bf8ed1716892075d3faaa3ee2239bde236acb46b4a7906fb689707b90080a752f55011  Image-ExifTool-11.65.tar.gz"