blob: cca9a5f86b27e438e46d6f05c3f17348af735979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $Id: PKGBUILD 171846 2012-11-21 20:01:41Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgname=kdeutils-kcalc
pkgver=4.9.80
pkgrel=1
pkgdesc='Scientific Calculator'
url='http://kde.org/applications/utilities/kcalc/'
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
depends=('kdebase-runtime')
makedepends=('cmake' 'automoc4')
groups=('kde' 'kdeutils')
install=${pkgname}.install
source=("http://download.kde.org/unstable/${pkgver}/src/kcalc-${pkgver}.tar.xz")
sha1sums=('7ec4953e9f0b9ac26d7cbe10765c2ccd9e0a8a36')
build() {
cd "${srcdir}"
mkdir build
cd build
cmake ../kcalc-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd $srcdir/build
make DESTDIR=$pkgdir install
cd $srcdir/build/doc
make DESTDIR=$pkgdir install
}
|