diff options
author | root <root@rshg054.dnsready.net> | 2013-06-09 00:51:01 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-06-09 00:51:01 -0700 |
commit | 7b378b1b5b346bd49a5ab1652214fb34d03de3a9 (patch) | |
tree | 9ec661d7828b93bd4d24723647adc0701d87eda2 /extra/gnucash | |
parent | e90166c70f3a2bd27d8c914491f7e0510855fd3f (diff) |
Sun Jun 9 00:50:45 PDT 2013
Diffstat (limited to 'extra/gnucash')
-rw-r--r-- | extra/gnucash/PKGBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/extra/gnucash/PKGBUILD b/extra/gnucash/PKGBUILD index 8841c00a9..067f51885 100644 --- a/extra/gnucash/PKGBUILD +++ b/extra/gnucash/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 173829 2012-12-24 16:03:19Z jgc $ +# $Id: PKGBUILD 188077 2013-06-08 11:18:22Z bpiotrowski $ # Maintainer: Aaron Griffin <aaron@archlinux.org> # Contributor: Mark Schneider <queueRAM@gmail.com> pkgname=gnucash -pkgver=2.4.11 -pkgrel=2 +pkgver=2.4.13 +pkgrel=1 pkgdesc="A personal and small-business financial-accounting application" arch=('i686' 'x86_64') url="http://www.gnucash.org" @@ -17,10 +17,16 @@ optdepends=('evince: for print preview' options=('!libtool' '!makeflags' '!emptydirs') install=gnucash.install source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -sha1sums=('c157ad7ea0960c71966f5071acd9018580ece538') +sha1sums=('cd28d4e7d84d71ade56173734d634ccadc59ed81') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's|guile-config|guile-config1.8|g' configure +} build() { cd "${srcdir}/${pkgname}-${pkgver}" + export GUILE=/usr/bin/guile1.8 ./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc \ --libexecdir=/usr/lib --disable-schemas-install --enable-ofx --enable-aqbanking make |