X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by lists.alpinelinux.org (Postfix) with ESMTP id 0C66D1EBFF5 for ; Sun, 23 Jan 2011 05:15:13 +0000 (UTC) Received: by vws9 with SMTP id 9so1340938vws.13 for ; Sat, 22 Jan 2011 21:15:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer; bh=zq3O+giNFTeLPOZ2jrn+L/HYMZ86AztYC6sa9kxhUpI=; b=SWbm78LP/8q3GLFAHH60aQbXEaKWclX2r8aUbAMkz2bf+IWUSiSD8pSH6xfCEtumQv k4nuj88D/+dpfAXKYoPX6XC+UlqnLjX4Q6X4OFLm03yQtq/nbkr37eSBhMwIdfqSAQeZ Jl5sUy/zjDRL2QBeU5Lw+Yyc5NtLCOrzukuSM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=QpcmEbfQ86C/hjAW64/wRDY7ivYY8+QC80of7Eme695iB15x1UiGI/kX3QWUOTF6Fq x+9EVTLMaWQbOM7BVtViAnqejCKlGyZgajHXnR8tCiboB/DsUD667kG6lDou5YupExO1 zlavzWkTQOi7VjalnH6mETE+6a9P3EuF09s6c= Received: by 10.220.195.65 with SMTP id eb1mr785905vcb.35.1295759712360; Sat, 22 Jan 2011 21:15:12 -0800 (PST) Received: from localhost.localdomain (209.250.132.162.tor.pathcom.com [209.250.132.162]) by mx.google.com with ESMTPS id bq5sm3724233vcb.32.2011.01.22.21.15.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 22 Jan 2011 21:15:11 -0800 (PST) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH] testing/perl-dbd-sqlite: new aport Date: Sun, 23 Jan 2011 05:15:01 +0000 Message-Id: <1295759701-17319-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.3.5 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: new aport --- testing/perl-dbd-sqlite/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 testing/perl-dbd-sqlite/APKBUILD diff --git a/testing/perl-dbd-sqlite/APKBUILD b/testing/perl-dbd-sqlite/APKBUILD new file mode 100644 index 0000000..72f8ef4 --- /dev/null +++ b/testing/perl-dbd-sqlite/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Jeff Bilyk +# Maintainer: Natanael Copa +pkgname=perl-dbd-sqlite +_realpkgname=DBD-SQLite +pkgver=0.31 +pkgrel=0 +pkgdesc="Perl CPAN DBD::SQLite module" +url="http://search.cpan.org/dist/${_realpkgname}" +arch="all" +license="GPL PerlArtistic" +depends="perl-dbi" +makedepends="perl perl-dev" +source="http://search.cpan.org/CPAN/authors/id/M/MS/MSERGEANT/${_realpkgname}-$pkgver.tar.gz" + +_builddir="$srcdir"/${_realpkgname}-$pkgver + +prepare() { + return 0 +} + +build() { + cd "$_builddir" + perl Makefile.PL INSTALLDIRS=vendor + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install +} + +md5sums="4aa99c39104b7cd39129aec548e7d3e4 DBD-SQLite-0.31.tar.gz" -- 1.7.3.5 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---