gtk/wxmaxima/PKGBUILD

34 lines
1.0 KiB
Bash
Raw Normal View History

2013-04-28 07:59:03 +08:00
pkgname=wxmaxima
2015-01-12 00:20:13 +08:00
pkgver=14.12.1
2014-10-02 03:21:01 +08:00
pkgrel=1
2013-04-28 07:59:03 +08:00
pkgdesc="A wxWidgets GUI for the computer algebra system Maxima"
arch=('x86_64')
url="http://wxmaxima.sourceforge.net/"
license=('GPL2')
depends=('maxima' 'libxml2' 'wxgtk2.8' 'shared-mime-info' 'desktop-file-utils')
2014-10-02 03:21:01 +08:00
source=(http://downloads.sourceforge.net/$pkgname/${pkgname}-$pkgver.tar.gz)
2013-04-28 07:59:03 +08:00
install=wxmaxima.install
2015-01-12 00:20:13 +08:00
sha1sums=('685d77d2480c91b0b7b3960d98a2f6b55fb88e32')
2013-04-28 07:59:03 +08:00
build() {
2014-10-02 03:21:01 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
export WX_CONFIG_PATH=/usr/bin/wx-config-2.8
./configure --prefix=/usr
2013-04-28 07:59:03 +08:00
make
}
package() {
2014-10-02 03:21:01 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
2013-04-28 07:59:03 +08:00
make DESTDIR="${pkgdir}" install
# Fix category in .desktop file
sed -i -e 's/Utility;X-Red-Hat-Base;X-Red-Hat-Base-Only;/Science;Math;/' wxmaxima.desktop
# Install desktop file and icon
install -m755 -d "${pkgdir}/usr/share/applications"
install -m755 -d "${pkgdir}/usr/share/pixmaps"
install -m644 wxmaxima.desktop "${pkgdir}/usr/share/applications/"
install -m644 data/wxmaxima.png "${pkgdir}/usr/share/pixmaps/"
2013-04-28 07:59:03 +08:00
}