From e158dfa2db8a3ecaaa510b2befd69ebb5c3e9d36 Mon Sep 17 00:00:00 2001 From: "ph4ntome@gmail.com" Date: Fri, 31 Oct 2014 22:57:59 +0000 Subject: [PATCH] Added me to AUTHORS, added PKGBUILD. This is a working PKGBUILD for Arch Linux. I haven't uploaded it yet to AUR. I will upload it in some hours, want to test it first. git-svn-id: https://callirhoe.googlecode.com/svn/branches/phantome@196 81c8bb96-aa45-f2e2-0eef-c4fa4a15c6df --- AUTHORS | 2 +- PKGBUILD | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 PKGBUILD diff --git a/AUTHORS b/AUTHORS index fcc5e4e..877355e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,7 +12,7 @@ George M. Tzoumas CONTRIBUTORS ------------ Neels Hofmeyr - +Nick Kavalieris LANGUAGE DEFINITIONS -------------------- diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..f419735 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,30 @@ +# Author : George Tzoumas +# Maintainer: Nick Kavalieris +# For contributors check the AUTHORS file +pkgname=callirhoe +pkgver=195 +pkgrel=1 +pkgdesc="PDF Calendar creator with high quality vector graphics" +url="https://code.google.com/p/callirhoe/" +arch=('any') +license=('GPLv3') +depends=('python2' 'imagemagick' 'python2-cairo' 'subversion') +source=("$pkgname::svn+https://callirhoe.googlecode.com/svn/branches/phantome") +md5sums=('SKIP') + + +pkgver() { + cd "$pkgname" + svnversion | tr -d [A-z] | sed 's/ *//g' +} + +build() { + cd "${srcdir}/${pkgname}" + ./make_pkg +} + +package() { + cd "${srcdir}/${pkgname}" + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" + make DESTDIR="$pkgdir/usr" install +} \ No newline at end of file