mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:07:13 +08:00
27 lines
844 B
Bash
27 lines
844 B
Bash
# Maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libqalculate
|
|
pkgver=0.9.7
|
|
pkgrel=4
|
|
pkgdesc="Multi-purpose desktop calculator"
|
|
arch=('x86_64')
|
|
url="http://qalculate.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('libxml2' 'cln' 'glib2' 'ncurses' 'readline')
|
|
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}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|