core/libqalculate/PKGBUILD

28 lines
852 B
Bash
Raw Normal View History

2011-08-14 07:24:53 +08:00
# Platform Packages for Chakra, part of chakra-project.org
#
2010-03-14 23:48:48 +08:00
pkgname=libqalculate
pkgver=0.9.7
2012-11-20 18:11:29 +08:00
pkgrel=3
2010-03-14 23:48:48 +08:00
pkgdesc="Multi-purpose desktop calculator"
2012-11-20 18:11:29 +08:00
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://qalculate.sourceforge.net/"
license=('GPL')
2012-11-20 18:11:29 +08:00
depends=('libxml2' 'cln' 'glib2' 'ncurses' 'readline')
2010-03-14 23:48:48 +08:00
makedepends=('perlxml')
optdepends=('gnuplot: for plotting support' 'wget: for retrieval of exchange rates (not needed if you use one of the GUI)' 'gnome-vfs: for retrieval of exchange rates (not needed if you use one of the GUI)')
options=('!libtool' '!makeflags')
source=(http://downloads.sourceforge.net/sourceforge/qalculate/${pkgname}-${pkgver}.tar.gz)
md5sums=('a1507ab862f4ad9852788619aada35cd')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2011-08-14 07:24:53 +08:00
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}