mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
866 B
Bash
25 lines
866 B
Bash
|
# $Id: PKGBUILD 1878 2009-09-05 20:48:12Z andrea $
|
||
|
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
|
||
|
# Contributor: Eric Belanger <belanger@astro.umontreal.ca>
|
||
|
# Contributor: Andrew Conkling <andrewski@fr.st>
|
||
|
|
||
|
pkgname=gourmet
|
||
|
pkgver=0.15.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A simple but powerful recipe-managing application"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://grecipe-manager.sourceforge.net"
|
||
|
license=('GPL')
|
||
|
depends=('gnome-python-extras' 'libglade' 'metakit' 'pil' 'python-pysqlite' 'python-reportlab'
|
||
|
'python-sqlalchemy')
|
||
|
makedepends=('intltool')
|
||
|
optdepends=('libgnomeprintui: gnome printing support'
|
||
|
'pyrtf: RTF support')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/grecipe-manager/gourmet-${pkgver}.tar.gz)
|
||
|
md5sums=('a53d8dd05893755cf634f2e75b4e9696')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/gourmet-${pkgver}
|
||
|
python setup.py install --root=${pkgdir}
|
||
|
}
|