mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
750 B
Bash
Executable file
26 lines
750 B
Bash
Executable file
|
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
# Contributor: TripleE <eric1548@yahoo.com>
|
|
|
|
pkgname=xiphos
|
|
pkgver=3.1
|
|
pkgrel=2
|
|
pkgdesc="A Bible study tool for gnome"
|
|
arch=('i686' 'x86_64')
|
|
url="http://xiphos.org"
|
|
license=('GPL')
|
|
depends=('libgnomeprintui' 'gtkhtml' 'sword' 'imagemagick')
|
|
makedepends=('xulrunner' 'gnome-doc-utils')
|
|
conflicts=('gnomesword')
|
|
provides=('gnomesword')
|
|
replaces=('gnomesword')
|
|
source=(http://downloads.sourceforge.net/sourceforge/gnomesword/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('6ba1c80362ccce30e86d21b775511995')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-gtkhtml \
|
|
--with-gecko=libxul-embedding || return 1
|
|
make || return 1
|
|
make install DESTDIR=$pkgdir || return 1
|
|
}
|