blob: a101bb01d87de173955c0b7dd00115db2ab90873 (
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
39
40
41
42
43
44
45
46
47
48
|
# $Id: PKGBUILD 49750 2011-06-20 22:08:06Z andrea $
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: TripleE <eric1548@yahoo.com>
pkgname=sword
pkgver=1.6.2
pkgrel=4
pkgdesc="SWORD libraries for Bible programs"
arch=('i686' 'x86_64')
url="http://www.crosswire.org/sword/index.jsp"
license=('GPL')
depends=('curl' 'icu' 'clucene' 'swig')
makedepends=('cmake')
backup=('etc/sword.conf')
source=("http://www.crosswire.org/ftpmirror/pub/${pkgname}/source/v1.6/${pkgname}-${pkgver}.tar.gz")
md5sums=('a7dc4456e20e915fec46d774b690e305')
build() {
cd "${srcdir}"
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
make
}
package() {
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
# Ugly workarounds to fix a weird cmakelists.txt
install -d "${pkgdir}"/usr/lib/sword
mv "${pkgdir}"/usr/lib/1.6.2_icu_4.8 "${pkgdir}"/usr/lib/sword/
cd "${srcdir}"/${pkgname}-${pkgver}/locales.d/
for file in *.conf; do
install -Dm644 $file "${pkgdir}"/usr/share/sword/locales.d/$file
done
cd ../include
install -d "${pkgdir}"/usr/include/sword
install -Dm644 canon_{catholic{,2},synodalp}.h "${pkgdir}"/usr/include/sword
cd ../samples
install -Dm644 mods.d/globals.conf "${pkgdir}"/usr/share/sword/mods.d/globals.conf
install -Dm644 recommended/sword.conf "${pkgdir}"/etc/sword.conf
}
|