summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaroslav Lichtblau2014-11-28 20:17:14 +0100
committerJaroslav Lichtblau2014-11-28 20:17:14 +0100
commitbc690ba263d0a2c004a320571adc4586cfe3ecfb (patch)
treec1d4fbdbc296c8a95d920ba364d70df5e60a5214
downloadaur-bc690ba263d0a2c004a320571adc4586cfe3ecfb.tar.gz
Initial PKGBUILD status as of 28.11.2014
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD19
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..730ba15bea60
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = gimp-plugin-pandora
+ pkgdesc = A GIMP plug-in which helps in stitching together multiple images to make a panorama.
+ pkgver = 0.9.3
+ pkgrel = 2
+ url = http://www.shallowsky.com/software/pandora/
+ arch = i686
+ arch = x86_64
+ license = GPL
+ depends = gimp
+ source = http://www.shallowsky.com/software/pandora/pandora-combine-0.9.3.scm
+ sha256sums = 603041ad27da450a58898b70b0b664a7f0d052ac36fde2aa58f4ea86922acf21
+
+pkgname = gimp-plugin-pandora
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c8e1f0daa435
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+
+pkgname=gimp-plugin-pandora
+pkgver=0.9.3
+pkgrel=2
+pkgdesc="A GIMP plug-in which helps in stitching together multiple images to make a panorama."
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.shallowsky.com/software/pandora/"
+depends=('gimp')
+source=(http://www.shallowsky.com/software/pandora/pandora-combine-${pkgver}.scm)
+sha256sums=('603041ad27da450a58898b70b0b664a7f0d052ac36fde2aa58f4ea86922acf21')
+
+package() {
+ cd ${srcdir}
+
+ install -d "${pkgdir}/usr/share/gimp/2.0/scripts"
+ install -D -m644 "pandora-combine-$pkgver.scm" "${pkgdir}/usr/share/gimp/2.0/scripts/pandora.scm"
+}