Date: Tuesday, December 23, 2014 @ 11:18:38 Author: juergen Revision: 227942
upgpkg: gnucash 2.6.5-1 added mariadb and postgresql interfaces Modified: gnucash/trunk/PKGBUILD ----------+ PKGBUILD | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-12-23 09:00:39 UTC (rev 227941) +++ PKGBUILD 2014-12-23 10:18:38 UTC (rev 227942) @@ -3,13 +3,13 @@ # Contributor: Mark Schneider <[email protected]> pkgname=gnucash -pkgver=2.6.3 +pkgver=2.6.5 pkgrel=1 pkgdesc="A personal and small-business financial-accounting application" arch=('i686' 'x86_64') url="http://www.gnucash.org" license=("GPL") -depends=('slib' 'goffice0.8' 'libdbi-drivers' 'aqbanking' 'desktop-file-utils' 'webkitgtk2' 'libgnome-keyring' 'libgnomecanvas') +depends=('slib' 'goffice0.8' 'libdbi-drivers' 'libmariadbclient' 'postgresql-libs' 'aqbanking' 'desktop-file-utils' 'webkitgtk2' 'libgnome-keyring' 'libgnomecanvas') makedepends=('intltool') optdepends=('evince: for print preview' 'perl-finance-quote: for stock information lookups' @@ -17,16 +17,14 @@ options=('!makeflags' '!emptydirs') install=gnucash.install source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -sha1sums=('40ea9c069d0ad0a811b74f00c2b32faad6108a6a') +sha1sums=('c9a5184603e41c6582f8342d4be9e392eceef33f') 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-compile --enable-ofx --enable-aqbanking make @@ -41,4 +39,10 @@ install -dm755 "${pkgdir}/usr/share/gconf/schemas" gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnucash "${pkgdir}"/etc/gconf/schemas/*.schemas rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas + + # Delete the gnucash-valgrind executable because the source files + # are not included with the package and the executable is hardlinked + # to the location that it was built at. + rm -f "${pkgdir}"/usr/bin/gnucash-valgrind + }
