mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
675 B
Bash
23 lines
675 B
Bash
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
# Contributor: TripleE <eric1548@yahoo.com>
|
|
|
|
pkgname=sword
|
|
pkgver=1.6.0
|
|
pkgrel=3
|
|
pkgdesc="SWORD libraries for Bible programs"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.crosswire.org/sword/index.jsp"
|
|
license=('GPL')
|
|
depends=('curl' 'icu' 'clucene')
|
|
source=(http://www.crosswire.org/ftpmirror/pub/$pkgname/source/v1.6/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('292ca38b2427168b19d629b48a428dde')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc --with-lucene \
|
|
--with-icu || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
make DESTDIR=$pkgdir install_config || return 1
|
|
}
|
|
|