X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by lists.alpinelinux.org (Postfix) with ESMTP id 8CA9E1EBFF5 for ; Fri, 28 Jan 2011 09:39:20 +0000 (UTC) Received: by ewy24 with SMTP id 24so1443833ewy.13 for ; Fri, 28 Jan 2011 01:39:20 -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 :in-reply-to:references; bh=YH/fEHaeKBjheGdjJ8dqVwM/YGppoB7zk13okv0Ti9M=; b=NPP+Hex+BpfeHsCpp1nsy+QfKi1C++OhRozvZvmKI4V3A/xUkPkv11aWyBbs59SzeL Fw/N46OWd0QF2XXY4kZBJG2AVx5xRdYMPYOzCdhqgCM4a4s1SnIrxgkk7RYrYDT/P3DU kyKLCjYDVzHXhJuewQbWSXrpOWaV6p4OwoMuk= 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=R7j7agI6C3ARB0oWEqMLhYkZ/9ldwdT1JWHElKZwyh27ciq3Cwrg7PFXWzdpPDCXYx 74nNFddvgOiAPqH1Sdafiu0NZTao2iXFyRJMP2wQd463iL0UFQ0ZnmbEYvbRgUNA/9mn IFZgdrPnBE3UUfcB9XUvrrjRjCPCmihbsfqDg= Received: by 10.213.8.210 with SMTP id i18mr4516790ebi.3.1296207559263; Fri, 28 Jan 2011 01:39:19 -0800 (PST) Received: from localhost.localdomain ([196.35.155.75]) by mx.google.com with ESMTPS id t5sm13676545eeh.20.2011.01.28.01.39.17 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 28 Jan 2011 01:39:18 -0800 (PST) From: Duane Hughes To: alpine-devel@lists.alpinelinux.org Cc: Duane Hughes Subject: [alpine-devel] [PATCH 2/4] testing/liblockfile: new aport Date: Fri, 28 Jan 2011 09:30:23 +0000 Message-Id: <1296207025-28687-2-git-send-email-duanejevon@gmail.com> X-Mailer: git-send-email 1.7.3.2 In-Reply-To: <1296207025-28687-1-git-send-email-duanejevon@gmail.com> References: <1296207025-28687-1-git-send-email-duanejevon@gmail.com> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: library files for file locking tools --- testing/liblockfile/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) create mode 100644 testing/liblockfile/APKBUILD diff --git a/testing/liblockfile/APKBUILD b/testing/liblockfile/APKBUILD new file mode 100644 index 0000000..8415b3d --- /dev/null +++ b/testing/liblockfile/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Duane Hughes +# Maintainer: Natanael Copa +pkgname=liblockfile +pkgver=1.08 +pkgrel=0 +pkgdesc="Shared library with NFS-safe locking functions" +url="http://packages.debian.org/sid/liblockfile1" +arch="all" +license="GPL" +depends="" +makedepends= +install= +subpackages="$pkgname-dev $pkgname-doc" +source="http://ftp.debian.org/debian/pool/main/libl/liblockfile/${pkgname}_$pkgver.orig.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver + + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man + make -j1 || return 1 +} + +package() { + cd "$_builddir" + + install -d "$pkgdir"/usr/include + install -d "$pkgdir"/usr/bin + install -d "$pkgdir"/usr/lib + install -d "$pkgdir"/usr/share/man + + make -j1 ROOT="$pkgdir" install +} + +md5sums="c24e2dfb4a2aab0263fe5ac1564d305e liblockfile_1.08.orig.tar.gz" -- 1.7.3.2 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---