Initial PKGBUILD status as of 28.11.2014

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

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = photomolo
pkgdesc = Frontend to manage connections to remote filesystems using GIO/GVFS
pkgver = 1.2.4
pkgrel = 1
url = http://www.nic.funet.fi/pub/sci/graphics/packages/photomolo/photomolo.html
arch = i686
arch = x86_64
license = GPL2
depends = libjpeg-turbo
source = http://www.nic.funet.fi/pub/sci/graphics/packages/photomolo/photomolo-1.2.4.tar.gz
md5sums = 8e277b95023b2e32171edeae5367e7f5
pkgname = photomolo

28
PKGBUILD Normal file
View file

@ -0,0 +1,28 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=photomolo
pkgver=1.2.4
pkgrel=1
pkgdesc="Frontend to manage connections to remote filesystems using GIO/GVFS"
arch=('i686' 'x86_64')
url="http://www.nic.funet.fi/pub/sci/graphics/packages/photomolo/photomolo.html"
license=('GPL2')
depends=('libjpeg-turbo')
source=(http://www.nic.funet.fi/pub/sci/graphics/packages/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('8e277b95023b2e32171edeae5367e7f5')
build() {
cd ${srcdir}/$pkgname-$pkgver
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
make PREFIX="${pkgdir}"/usr install installman
install -d "$pkgdir"/usr/share/doc/$pkgname
cp -r examples "$pkgdir"/usr/share/doc/$pkgname
chmod -x "$pkgdir"/usr/share/doc/$pkgname/examples/*
}