X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id C8A55DC7B42 for ; Sun, 7 Jun 2015 01:07:12 +0000 (UTC) Received: from ataiki.ednos.net (ednos.dserver.softronics.ch [91.214.168.83]) by mail.alpinelinux.org (Postfix) with ESMTP id 8B1A8DC7673 for ; Sun, 7 Jun 2015 01:07:07 +0000 (UTC) Received: from localhost.localdomain (pool-173-76-134-5.bstnma.fios.verizon.net [173.76.134.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by ataiki.ednos.net (Postfix) with ESMTPSA id C385415D; Sat, 6 Jun 2015 21:09:52 -0400 (EDT) From: Andrew Hills To: alpine-aports@lists.alpinelinux.org Cc: Andrew Hills Subject: [alpine-aports] [PATCH 2/2] testing/zathura: new aport Date: Sun, 7 Jun 2015 01:05:34 +0000 Message-Id: <1433639134-26912-2-git-send-email-ahills@ednos.net> X-Mailer: git-send-email 2.4.2 In-Reply-To: <1433639134-26912-1-git-send-email-ahills@ednos.net> References: <1433639134-26912-1-git-send-email-ahills@ednos.net> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://pwmt.org/projects/zathura Document viewer with Vim-like controls --- testing/zathura/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/zathura/APKBUILD diff --git a/testing/zathura/APKBUILD b/testing/zathura/APKBUILD new file mode 100644 index 0000000..0d70b94 --- /dev/null +++ b/testing/zathura/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Andrew Hills +# Maintainer: Andrew Hills +pkgname=zathura +pkgver=0.3.3 +pkgrel=0 +pkgdesc="Document viewer with Vim-like controls" +url="https://pwmt.org/projects/zathura" +arch="all" +license="zlib" +depends="" +depends_dev="" +makedepends="$depends_dev girara-dev gtk+3.0-dev glib-dev file-dev ncurses" +install="" +subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" +source="https://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz" + +_builddir="$srcdir"/zathura-$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" + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="d360252210ce51a29e8d341b1b72a7cc zathura-0.3.3.tar.gz" +sha256sums="3347decfc8d4b918a6bca1d44657c3b97d4afcea3c8c1f162c57198b13e8dce7 zathura-0.3.3.tar.gz" +sha512sums="0bfcb2c9ca6e7cf44db1c04fdcc5e1e2122b5bd060c10b711a331f885371a523881a46376c770b60cf199530fd9c7814248e8a6da556da8cd464a3a85dbad8e3 zathura-0.3.3.tar.gz" -- 2.4.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---