diff options
Diffstat (limited to 'community/xiphos/PKGBUILD')
-rwxr-xr-x | community/xiphos/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/xiphos/PKGBUILD b/community/xiphos/PKGBUILD new file mode 100755 index 000000000..d992f4341 --- /dev/null +++ b/community/xiphos/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> +# Contributor: TripleE <eric1548@yahoo.com> + +pkgname=xiphos +pkgver=3.1.4 +pkgrel=7 +pkgdesc="A Bible study tool for gtk" +arch=('i686' 'x86_64') +url="http://xiphos.org" +license=('GPL') +depends=('libgsf' 'libglade' 'gtkhtml' 'sword' 'hicolor-icon-theme') +makedepends=('gnome-doc-utils' 'intltool' 'python2') +conflicts=('gnomesword') +provides=('gnomesword') +replaces=('gnomesword') +install=$pkgname.install +source=("http://downloads.sourceforge.net/sourceforge/gnomesword/$pkgname-$pkgver.tar.gz") +md5sums=('4d6f7805c4c8185f5c4ac3bd95fc705a') + +build() { + cd $srcdir/$pkgname-$pkgver + sed -i '1s/python/python2/' waf + ./waf configure --prefix=/usr --enable-gtkhtml + ./waf build --prefix=/usr +} +package() { + cd $srcdir/$pkgname-$pkgver + GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 ./waf install --destdir=$pkgdir +} |