X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail.wtbts.no (mail.wtbts.no [213.234.126.131]) by lists.alpinelinux.org (Postfix) with ESMTP id B66D81EBFF8 for ; Thu, 11 Nov 2010 13:40:30 +0000 (UTC) Received: from [10.65.65.1] (unknown [10.65.65.1]) by mail.wtbts.no (Postfix) with ESMTP id 964267E009; Thu, 11 Nov 2010 14:33:02 +0100 (CET) Subject: Re: [alpine-devel] [PATCH] testing/templayer: new aport From: Natanael Copa To: Matt Smith Cc: alpine-devel@lists.alpinelinux.org In-Reply-To: <1289271494-29592-1-git-send-email-mcs@darkregion.net> References: <1289271494-29592-1-git-send-email-mcs@darkregion.net> Content-Type: text/plain; charset="UTF-8" Date: Thu, 11 Nov 2010 14:40:29 +0100 Message-ID: <1289482829.18266.105.camel@ncopa-desktop.nor.wtbts.net> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Mime-Version: 1.0 X-Mailer: Evolution 2.32.0 Content-Transfer-Encoding: 7bit On Mon, 2010-11-08 at 20:58 -0600, Matt Smith wrote: > --- > testing/templayer/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ > 1 files changed, 39 insertions(+), 0 deletions(-) > create mode 100644 testing/templayer/APKBUILD > > diff --git a/testing/templayer/APKBUILD b/testing/templayer/APKBUILD > new file mode 100644 > index 0000000..9fd2dba > --- /dev/null > +++ b/testing/templayer/APKBUILD > @@ -0,0 +1,39 @@ > +# Contributor: Matt Smith > +# Maintainer: Matt Smith > +pkgname=templayer > +pkgver=1.5.1 > +pkgrel=0 > +pkgdesc="Templayer is a layered template library for Python and Django" > +url="http://excess.org/templayer/" > +license="LGPL" > +depends="python" > +makedepends="python-dev" > +install= > +subpackages="$pkgname-doc" > +source="http://excess.org/$pkgname/$pkgname-$pkgver.tar.gz" > + > +_builddir="$srcdir"/$pkgname-$pkgver > + > +prepare() { > + cd "$_builddir" > + # apply patches here > +} > + > +build() { > + return 0 techincally, 'python setup.py build' should happen here. > +} > + > +package() { > + cd "$_builddir" > + python setup.py install --root "$pkgdir" > +} > + > +doc() { > + mkdir -p "$subpkgdir"/usr/share/doc/$pkgname > + cd "$_builddir" > + install -Dm644 docs/reference.html "$subpkgdir"/usr/share/doc/$pkgname/reference.html > + install -Dm644 docs/tutorial.html "$subpkgdir"/usr/share/doc/$pkgname/tutorial.html > + install -Dm644 docs/tutorial_examples.tar.gz "$subpkgdir"/usr/share/doc/$pkgname/tutorial_examples.tar.gz not sure i like the idea of installing documentation as tar.gz. Appliend anywas. thanks! > +} > + > +md5sums="9d1a3aa0cece34a2492792278aad406d templayer-1.5.1.tar.gz" --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---