X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-qa0-f50.google.com (mail-qa0-f50.google.com [209.85.216.50]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 047FBDC01BF for ; Wed, 3 Dec 2014 16:18:36 +0000 (UTC) Received: by mail-qa0-f50.google.com with SMTP id w8so10715353qac.9 for ; Wed, 03 Dec 2014 08:18:36 -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=pHn7mwo5kalBMIlhV6jkOVSKZ9/o9imkdtFqfc+o0dQ=; b=0FpzV9BhcB+qilhn5FJg7gB59htc/fHhecUlMJUr1C2dkJfm3vOsSSJmmWNio/CkW7 uksVCVBfjl/X0BWVQeSA3Z7eVKqQaBQ2NQ2uUGMMYcBFcrnKHt/sP5NQgNovqd2xVNl8 wh0aVLPRPq2qlgvxWIgK+zACXcXya+dRwy0bQPuQFd///G3k2yNrW/+xEEtpu9FQMzdz ga8T2PhahbujfxGBoFqj6cD7yie/H4uSUqUrIh//2ExsJqfKDZ6wCtbijP9BRMo3F+Om HGqlaQDmFwsLZRzufNEJQcAYPoLahjHyAWVW397jnW2LnEH83Ye85TecjWo/RFIuCh5j A1mQ== X-Received: by 10.224.67.7 with SMTP id p7mr8974532qai.97.1417623516339; Wed, 03 Dec 2014 08:18:36 -0800 (PST) Received: from alacerda-dev.bethel.jw.org ([186.233.140.3]) by mx.google.com with ESMTPSA id 78sm23821802qgp.2.2014.12.03.08.18.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 03 Dec 2014 08:18:35 -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-xsl: new aports Date: Wed, 3 Dec 2014 16:18:26 +0000 Message-Id: <1417623506-17412-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-xsl/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/yelp-xsl/APKBUILD diff --git a/testing/yelp-xsl/APKBUILD b/testing/yelp-xsl/APKBUILD new file mode 100644 index 0000000..ef33b7d --- /dev/null +++ b/testing/yelp-xsl/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Alan Lacerda +# Maintainer: +pkgname=yelp-xsl +pkgver=3.14.0 +pkgrel=0 +pkgdesc="A collection of programs and data files to help you build,maintain, and distribute documentation." +url="https://wiki.gnome.org/Apps/Yelp" +arch="noarch" +license="GPL/LGPL/MIT" +depends="" +depends_dev="" +makedepends="intltool libxslt itstool" +install="" +subpackages="" +source="http://ftp.gnome.org/pub/gnome/sources/$pkgname/3.14/$pkgname-$pkgver.tar.xz" + +_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" + ./configure --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="${pkgdir}" install || return 1 +} + +md5sums="8965c1363857f223a6b761af6a37363d yelp-xsl-3.14.0.tar.xz" +sha256sums="8f5b6793cd600f8308e4ac93da68009169fa6d590eb71ed4a8e98bafe541a87e yelp-xsl-3.14.0.tar.xz" +sha512sums="d5f2b1b937a6b0c3f016c60be15e485d42d301446fd9b235a572a796d08481ef3f5d0df47bb5a394eb624bfe0eca650358ea1a635bbbd33e64da8e2709863483 yelp-xsl-3.14.0.tar.xz" -- 2.1.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---