X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id E35065C517C for ; Mon, 20 Mar 2017 14:25:56 +0000 (GMT) Received: from piha.riseup.net (unknown [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id A2CF71A0508 for ; Mon, 20 Mar 2017 14:25:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1490019956; bh=FM8ZD4+GmxesPsJhfzpTcojjAlSpOqte2ZkqpOBGhyQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=OqgHRJI2RYePsFuejOg/jb7/drUnEOYXMRB48ZKXgBQHPhv2hlRJ8DNI+3eauPdjl MkD+mp8eR3Pj+Xg48x54eiAt/Bk9Ykyp1hIn4fdFLBU0IodK8H0c3F6lg1aQ6TpKfb RtdTcCpPZ4OK8GYwz84xgbI7dw0nGaHKEXgbpGYg= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire) with ESMTPSA id B4D6B1C2374 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 2/2] testing/xournal: new aport Date: Mon, 20 Mar 2017 22:25:40 +0800 Message-Id: <20170320142540.17407-2-pickfire@riseup.net> In-Reply-To: <20170320142540.17407-1-pickfire@riseup.net> References: <20170320142540.17407-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://xournal.sourceforge.net/ Notetaking, sketching, keeping a journal using a stylus --- testing/xournal/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/xournal/APKBUILD diff --git a/testing/xournal/APKBUILD b/testing/xournal/APKBUILD new file mode 100644 index 00000000..9165ae54 --- /dev/null +++ b/testing/xournal/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Ivan Tham +# Maintainer: Ivan Tham +pkgname=xournal +pkgver=0.4.8 +pkgrel=0 +pkgdesc="Notetaking, sketching, keeping a journal using a stylus" +url="http://xournal.sourceforge.net/" +arch="all" +license="GPL2" +makedepends="libgnomecanvas-dev poppler-dev" +subpackages="$pkgname-lang" +source="http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz" +builddir="$srcdir/"$pkgname-$pkgver + +build() { + cd "$builddir" + ./configure --prefix=/usr || return 1 + make || return 1 +} + +check() { + cd "$builddir" + make check || return 1 +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +sha512sums="cfd5760a0e832ef02786a29cb744d4932aeee97c4d6992b430e647bd59aaef1042735203824d0eaf9da9b884dcdadcfb8f5acea221638db91438ae46a6ee42bf xournal-0.4.8.tar.gz" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---