X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id C5164DC0066 for ; Fri, 2 Jan 2015 02:39:24 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id fb1so23456081pad.13 for ; Thu, 01 Jan 2015 18:39:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=ECTf+8q0i6G265SPnpSyOgoFGxuAQ0Q4zbzyPDp5oDw=; b=qAa3ewgNe/woKyf8TMYQFtOUmfNukA3q8xFSGCqRPGnsy/3slpB9FhKgw/JR/uzdU7 brSe9yNSLGm+9MPqfvnRXRUnyndgXpX9xRhSWj/tXzW6tgBlv/krm4qFUQ/naJHCg/Gl Gz6nDThXPj1mfAv+qYDcdl+NiUhJ4fEPzJwC5BH2D6i+iCCzDROfktPNltgAvIQVO7ue hlTK4wYB4zoCRpSKF4TV0fohMWX0Kx0Dlpb1dyTjPG07SljMWm14RKicAmfwL8n2mvuD zu5c7Gi7jNNX9NqKaAG4k61O67mx7Y2ykMTcSdtOndwM4Skcx1UXwXIDd0kyGzNrVlaA 79rw== X-Received: by 10.70.103.238 with SMTP id fz14mr103414705pdb.79.1420166363942; Thu, 01 Jan 2015 18:39:23 -0800 (PST) Received: from localhost.localdomain ([50.0.224.21]) by mx.google.com with ESMTPSA id fk2sm37718849pab.10.2015.01.01.18.39.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 01 Jan 2015 18:39:23 -0800 (PST) From: Isaac Dunham To: alpine-devel@lists.alpinelinux.org Cc: Isaac Dunham Subject: [alpine-devel] [PATCH] testing/xiphos: new aport Date: Thu, 1 Jan 2015 18:39:22 -0800 Message-Id: <1420166362-5397-1-git-send-email-ibid.ag@gmail.com> X-Mailer: git-send-email 2.2.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Xiphos is a Bible study program for Gnome, based on the SWORD project. --- testing/xiphos/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/xiphos/APKBUILD diff --git a/testing/xiphos/APKBUILD b/testing/xiphos/APKBUILD new file mode 100644 index 0000000..1756428 --- /dev/null +++ b/testing/xiphos/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Isaac Dunham +# Maintainer: Isaac Dunham +pkgname=xiphos +pkgver=4.0.0 +pkgrel=0 +pkgdesc="Gnome application for Bible study" +url="https://sourceforge.net/projects/gnomesword" +arch="all" +license="GPL2" +depends="" +makedepends="webkitgtk-dev sword-dev gconf-dev libgsf-dev intltool gettext-dev rarian-dev desktop-file-utils gnome-doc-utils util-linux-dev" +install="" +subpackages="$pkgname-doc $pkgname-lang" +source="http://downloads.sourceforge.net/gnomesword/xiphos-$pkgver.tar.gz" + +_builddir="$srcdir"/xiphos-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./waf configure --prefix=/usr --enable-webkit-editor --gtk=3 && \ + ./waf build || return 1 +} + +package() { + cd "$_builddir" + DESTDIR="$pkgdir" ./waf install || return 1 + +} + +md5sums="7305c368510574bd64d873daeb5354ee xiphos-4.0.0.tar.gz" +sha256sums="c8408919f5d4847b9641a5ab52cf071adde42ff6c2c97b93532754ac2cec6966 xiphos-4.0.0.tar.gz" +sha512sums="0e8d70dc78be5ef9107307dcd28d756812212ee8e166cf0fdf1c1294617ccf0f1d119f36ab1b9d36f3de6e6ea538baf8cb6d36bc537afd4ff05d7fda44026352 xiphos-4.0.0.tar.gz" -- 2.2.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---