2014-01-01 21:30:02 +08:00
|
|
|
# Contributor: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
2010-08-01 07:52:21 +08:00
|
|
|
|
|
|
|
pkgname=sword
|
2014-01-01 21:30:02 +08:00
|
|
|
pkgver=1.7.1
|
|
|
|
pkgrel=1
|
2010-08-01 07:52:21 +08:00
|
|
|
pkgdesc="SWORD libraries for Bible programs"
|
2014-01-01 21:30:02 +08:00
|
|
|
arch=('x86_64')
|
2010-08-01 07:52:21 +08:00
|
|
|
url="http://www.crosswire.org/sword/index.jsp"
|
|
|
|
license=('GPL')
|
2011-08-27 05:16:00 +08:00
|
|
|
depends=('curl' 'swig' 'clucene')
|
|
|
|
makedepends=('cmake')
|
2010-08-01 07:52:21 +08:00
|
|
|
backup=('etc/sword.conf')
|
2014-01-01 21:30:02 +08:00
|
|
|
source=("http://www.crosswire.org/ftpmirror/pub/${pkgname}/source/v1.7/${pkgname}-${pkgver}.tar.gz" )
|
|
|
|
md5sums=('6fd4a19d1e82d9ba471e0cbce7649b9d')
|
2010-08-01 07:52:21 +08:00
|
|
|
|
|
|
|
build() {
|
2011-08-27 05:16:00 +08:00
|
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
|
|
[[ -d build ]] || mkdir build
|
|
|
|
cd build
|
2014-01-01 21:30:02 +08:00
|
|
|
cmake .. \
|
2011-08-27 05:16:00 +08:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
make
|
2010-08-01 07:52:21 +08:00
|
|
|
}
|
2011-08-27 05:16:00 +08:00
|
|
|
|
2010-08-01 07:52:21 +08:00
|
|
|
package() {
|
2014-01-01 21:30:02 +08:00
|
|
|
cd "${srcdir}/$pkgname-$pkgver/"build
|
2011-08-27 05:16:00 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
|
|
|
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
|
2010-08-01 07:52:21 +08:00
|
|
|
}
|
|
|
|
|
2014-01-01 21:30:02 +08:00
|
|
|
|