X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by lists.alpinelinux.org (Postfix) with ESMTP id 89BE51EFC34 for ; Sun, 31 Oct 2010 15:38:55 +0000 (UTC) Received: by iwn39 with SMTP id 39so5891623iwn.13 for ; Sun, 31 Oct 2010 08:38:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=5mHL65wcvJZPPs5lZ/5YNeWBHye0tEJJG/xhxRK1GVM=; b=hT/NdvR0uU36UaFkv8qQV7TeZ34HsUSS2jqhrgH6GAYfZ869fE7rXhcqgNssnlY4Bl NxsaiV1JWV4NothvkubJOcvGEfx+FeU9aohelAeVpB693xU4vioMb4i3qHHVynxUa1of +TXEkqf1n/U0V/0kBRjGGydQsIJXglnO/tGpA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=CplEG41n/iDq1pMBX1JgsPYV44vHdFA0CpAk6hviL3+yQnRqEKmtXg4PoaGTiqa5Jk udOaNtC8Y16aEgIH7j4DHq44EL6lPGAWP5zssVLnU5ra0WXx3hBSrGXG6wdeLee1NMJV 3rYyOS5UoMeEW9hTlpMartW6Pxe7m0AefJtew= Received: by 10.231.190.2 with SMTP id dg2mr7394525ibb.136.1288539535039; Sun, 31 Oct 2010 08:38:55 -0700 (PDT) Received: from localhost.localdomain (209.250.132.162.tor.pathcom.com [209.250.132.162]) by mx.google.com with ESMTPS id w9sm7070120ibc.19.2010.10.31.08.38.52 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 31 Oct 2010 08:38:54 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH 3/3] testing/perl-dbd-mysql: new aport Date: Sun, 31 Oct 2010 15:38:15 +0000 Message-Id: <1288539495-24243-3-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.3.2 In-Reply-To: <1288539495-24243-1-git-send-email-jbilyk@gmail.com> References: <1288539495-24243-1-git-send-email-jbilyk@gmail.com> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: testing/perl-dbd-mysql: new aport --- testing/perl-dbd-mysql/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) create mode 100644 testing/perl-dbd-mysql/APKBUILD diff --git a/testing/perl-dbd-mysql/APKBUILD b/testing/perl-dbd-mysql/APKBUILD new file mode 100644 index 0000000..0c93d57 --- /dev/null +++ b/testing/perl-dbd-mysql/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Jeff Bilyk +# Maintainer: Natanael Copa +pkgname=perl-dbd-mysql +_realpkgname=DBD-mysql +pkgver=4.014 +pkgrel=0 +pkgdesc="Perl CPAN DBD::Mysql module" +url="http://search.cpan.org/dist/${_realpkgname}" +license="GPL PerlArtistic" +depends="libmysqlclient perl-dbi" +makedepends="perl perl-dev mysql-dev" +source="http://www.cpan.org/authors/id/C/CA/CAPTTOFU/${_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="74f118a4984e6a49f8ece28e68caf543 DBD-mysql-4.014.tar.gz" -- 1.7.3.2 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---