Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 781ed1e42e
2 changed files with 32 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = gps2photo
pkgdesc = Geotags digital photos by using GPS track data recorded at the same time
pkgver = 1.160
pkgrel = 1
url = http://www.carto.net/projects/photoTools/gpsPhoto/
arch = any
license = GPL
depends = perl-image-exiftool
depends = perl-xml-parser
source = http://gps2photo.cvs.sourceforge.net/*checkout*/gps2photo/gpsPhoto/src/gpsPhoto.pl
sha256sums = d202bc00a70317dd3cafce7c2a9d770ac1c7071dd18a2e001693c5e492af98af
pkgname = gps2photo

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=gps2photo
pkgver=1.160
pkgrel=1
pkgdesc="Geotags digital photos by using GPS track data recorded at the same time"
arch=('any')
url="http://www.carto.net/projects/photoTools/gpsPhoto/"
license=('GPL')
depends=('perl-image-exiftool' 'perl-xml-parser')
source=(http://gps2photo.cvs.sourceforge.net/*checkout*/$pkgname/gpsPhoto/src/gpsPhoto.pl)
sha256sums=('d202bc00a70317dd3cafce7c2a9d770ac1c7071dd18a2e001693c5e492af98af')
package() {
cd ${srcdir}
install -D -m755 ${srcdir}/gpsPhoto.pl ${pkgdir}/usr/bin/gpsPhoto.pl
}