2014-11-05 10:36:06 +00:00
|
|
|
# Maintainer: Nick Kavalieris <ph4ntome[at]gmail[dot]com>
|
2014-11-06 12:01:21 +00:00
|
|
|
# Upstream Author : George Tzoumas <geotz[at]gmail[dot]com>
|
2014-11-05 10:36:06 +00:00
|
|
|
# For contributors check the AUTHORS file
|
2014-11-06 12:01:21 +00:00
|
|
|
|
|
|
|
# This file is also included in the source tree for purposes of completeness
|
2014-11-06 17:49:44 +00:00
|
|
|
# The normal way of aqusition is from AUR: https://aur.archlinux.org/packages/callirhoe/
|
2014-11-06 12:01:21 +00:00
|
|
|
|
2014-11-05 10:36:06 +00:00
|
|
|
pkgname=callirhoe
|
2014-11-06 11:58:56 +00:00
|
|
|
pkgver=228
|
2014-11-05 10:36:06 +00:00
|
|
|
pkgrel=1
|
2014-11-06 17:49:44 +00:00
|
|
|
pkgdesc="PDF & Photo calendar creator with high quality vector graphics"
|
2014-11-05 10:36:06 +00:00
|
|
|
url="https://code.google.com/p/callirhoe/"
|
|
|
|
arch=('any')
|
|
|
|
license=('GPLv3')
|
|
|
|
depends=('python2' 'imagemagick' 'python2-cairo' 'subversion')
|
2014-11-06 19:58:20 +00:00
|
|
|
source=("$pkgname::svn+https://callirhoe.googlecode.com/svn/trunk")
|
2014-11-05 10:36:06 +00:00
|
|
|
md5sums=('SKIP')
|
|
|
|
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd "$pkgname"
|
|
|
|
svnversion | tr -d [A-z] | sed 's/ *//g'
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2014-11-06 11:58:56 +00:00
|
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
make
|
2014-11-05 10:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
make DESTDIR="$pkgdir/usr" install
|
|
|
|
}
|