Date: Saturday, February 5, 2011 @ 04:59:21 Author: ronald Revision: 108967
upgpkg: maxima 5.23.2-1 update to latest version Modified: maxima/trunk/PKGBUILD ----------+ PKGBUILD | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-02-05 09:48:56 UTC (rev 108966) +++ PKGBUILD 2011-02-05 09:59:21 UTC (rev 108967) @@ -3,8 +3,8 @@ # Contributor: Damir Perisa <[email protected]> pkgname=maxima -pkgver=5.21.1 -pkgrel=6 +pkgver=5.23.2 +pkgrel=1 pkgdesc="Maxima - a sophisticated computer algebra system" arch=('i686' 'x86_64') license=('GPL') @@ -18,21 +18,22 @@ options=('!makeflags' '!zipman') # don't zip info pages or they won't work inside maxima install=maxima.install source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" "$pkgname.desktop") -md5sums=('e08ed533f3059cec52788ef35198bdcc' '24aa81126fbb8b726854e5a80d4c2415') +sha1sums=('f7300058faf730ce6cf63c18e59ec068df01b4a6' + '4398ebb1ec85ccfa12f37516a56d60c26f74b18b') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \ - --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl || return 1 - make || return 1 - make DESTDIR=${pkgdir} install || return 1 + --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl + make + make DESTDIR=${pkgdir} install # install some freedesktop.org compatibility install -Dm644 ${srcdir}/${pkgname}.desktop \ - ${pkgdir}/usr/share/applications/${pkgname}.desktop || return 1 + ${pkgdir}/usr/share/applications/${pkgname}.desktop # make sure, we have a nice icon for the desktop file at the right place ;) install -d ${pkgdir}/usr/share/pixmaps/ ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \ - ${pkgdir}/usr/share/pixmaps/${pkgname}.png || return 1 + ${pkgdir}/usr/share/pixmaps/${pkgname}.png }
