X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-qg0-f45.google.com (mail-qg0-f45.google.com [209.85.192.45]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id E052BDC00A0 for ; Mon, 15 Dec 2014 14:41:41 +0000 (UTC) Received: by mail-qg0-f45.google.com with SMTP id f51so8546690qge.18 for ; Mon, 15 Dec 2014 06:41:41 -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=Yvrc/8bQAqYMR+oHyUNKrN+o7+lDAKUVbW3DLh5rWZ8=; b=Td8x0JMiCs3I2WCHG78BHRGr17yz6ndK5SSa63Snowvvl0s5NCLbg+zJWnFvAriD// neEjzIvqmMLHS1VG3Fp+LzpdKh7BG8HaKABZBikYLHnqwFF3ZPvgwwJAGU2WWbMhKF4l FCe88YQjdk4IlEaZKA3BHX+aLZGQwjrNU9y24yMR/+QX6NIstgGXa8huaCJKJA/JcyJP Ozq7w7IlixcEXNQGuKb+PtKT/y51CM8xj/iBn+PcRHxqhr/kOrsDlywtI6a8OePj5kq9 eRI0MmHlEf3LjhnuxqdGc/c/nKTJ4ykLlun211Zd333ETptgq+EFcfwbDe4PEHsbeVRa Ti+w== X-Received: by 10.224.93.6 with SMTP id t6mr55892227qam.93.1418654501346; Mon, 15 Dec 2014 06:41:41 -0800 (PST) Received: from alacerda-dev.bethel.jw.org ([186.233.140.3]) by mx.google.com with ESMTPSA id a3sm10657292qag.22.2014.12.15.06.41.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 15 Dec 2014 06:41:40 -0800 (PST) From: Alan Lacerda X-Google-Original-From: Alan Lacerda To: alpine-devel@lists.alpinelinux.org Cc: Alan Lacerda Subject: [alpine-devel] [PATCH] testing/yelp-tools: new aport Date: Mon, 15 Dec 2014 14:41:32 +0000 Message-Id: <1418654492-1680-1-git-send-email-alacerda@alpinelinux.org> X-Mailer: git-send-email 2.1.3 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/yelp-tools/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/yelp-tools/APKBUILD diff --git a/testing/yelp-tools/APKBUILD b/testing/yelp-tools/APKBUILD new file mode 100644 index 0000000..5d2cf83 --- /dev/null +++ b/testing/yelp-tools/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Alan Lacerda +# Maintainer: +pkgname=yelp-tools +pkgver=3.14.1 +pkgrel=0 +pkgdesc="Small programs that help you create, edit, manage, and publish your Mallard or DocBook documentation." +url="https://wiki.gnome.org/Apps/Yelp/Tools" +arch="noarch" +license="GPL/LGPL" +depends="" +depends_dev="" +makedepends="gawk yelp-xsl autoconf automake itstool" +install="" +subpackages="" +source="https://github.com/GNOME/$pkgname/archive/$pkgver.tar.gz" + +_builddir="$srcdir/$pkgname-$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" + ./autogen.sh --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="${pkgdir}" install || return 1 +} + +md5sums="c179e9f843c216566502dfe12409172b 3.14.1.tar.gz" +sha256sums="e2483824ab68574eae84d56765988041958b7ce2416623bc6b07c863a5e077eb 3.14.1.tar.gz" +sha512sums="112f7400cb8f9bdea93ede32947d3fe77aea9ce5a6f30dcdb705d3055c21295a150d7d0a728e03e66da797a72b1c6066727ddd6d76d2e9a4bcacc7e54edef39d 3.14.1.tar.gz" -- 2.1.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---