# # Apps Packages for Chakra, part of chakra-project.org # # maintainer (i686): Phil Miller # maintainer (x86_64): Manuel Tortosa # contributor: Rajit Vikram Singh # include global config source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=perl-exiftool _srcname=Image-ExifTool pkgver=8.45 pkgrel=1 license=('GPL') pkgdesc="Reader and rewriter of EXIF informations that supports raw files" url="http://www.sno.phy.queensu.ca/~phil/exiftool/" arch=(any) depends=('perl') source=(http://www.sno.phy.queensu.ca/~phil/exiftool/${_srcname}-${pkgver}.tar.gz) options=(!emptydirs) md5sums=('ea4235bd5241e446051e62a1797f21f8') build() { cd ${srcdir}/${_srcname}-${pkgver} # install module in vendor directories. perl Makefile.PL INSTALLDIRS=vendor || return 1 make || return 1 make DESTDIR=${pkgdir} install || return 1 # remove *.pod, .packlist, and empty dirs: find ${pkgdir} -name '.packlist' -delete find ${pkgdir} -name '*.pod' -delete }