blob: ff3309501b3287eb536db033310dec3e02f3aaad (
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
34
35
36
37
38
|
# $Id: PKGBUILD 170622 2012-11-09 08:27:43Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgname=kdeedu-kalzium
pkgver=4.9.3
pkgrel=1
pkgdesc="Periodic Table of Elements"
url="http://kde.org/applications/education/kalzium/"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdeedu')
depends=('kdelibs' 'avogadro' 'ocaml' 'facile')
makedepends=('cmake' 'automoc4')
install=${pkgname}.install
source=("http://download.kde.org/stable/${pkgver}/src/kalzium-${pkgver}.tar.xz"
'fix-linking.patch')
sha1sums=('7b4a50aabd960752d6b746740cc6b4bf6cae3b30'
'478697adc8ae191355ee64b824f30e11bd7af682')
build() {
# KDEBUG#308939 (Fixed upstream)
cd kalzium-${pkgver}
patch -p1 -i "${srcdir}"/fix-linking.patch
cd ../
cd "${srcdir}"
mkdir build
cd build
cmake ../kalzium-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
}
|