diff options
Diffstat (limited to 'community/sword/PKGBUILD')
-rw-r--r-- | community/sword/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/sword/PKGBUILD b/community/sword/PKGBUILD new file mode 100644 index 000000000..853cabb1c --- /dev/null +++ b/community/sword/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> +# Contributor: TripleE <eric1548@yahoo.com> + +pkgname=sword +pkgver=1.6.2 +pkgrel=2 +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=('a7dc4456e20e915fec46d774b690e305') +backup=('etc/sword.conf') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --with-icu + make +} +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install + make DESTDIR=${pkgdir} install_config +} + |