X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by lists.alpinelinux.org (Postfix) with ESMTP id 6E9901EC7EA for ; Fri, 28 Jan 2011 09:39:23 +0000 (UTC) Received: by eyf6 with SMTP id 6so1475215eyf.13 for ; Fri, 28 Jan 2011 01:39:23 -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=rlJ4zfYfnQXKc1cb5j1faXIAdVT1YHbKOOwrv3oL6oQ=; b=fBdOFrGgHL9Z0JqsZHHzVlNLLrP9hzsqgiNieF1JroSOFqHEleey0I0UpO7S1oJoYd 2Uj3vS8zTwWpt3WZiDwLCkzyuBo2jDaGdTgVbv+PLIKmw64rfiPLgnUNteqapXJtn3dP 9ag4rFu1j9afkGB6S3G1+M+tUX5ubKJjfk4sU= 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=aJPFJITzMCudJR943ckuEvhoxjpTZuhtxKBMXl8vTerrdWKry8QZO1RELzwR87LOGK ACaD24Z31iLGXRGVKZ86yDWcn1MYX7IEbVC4IcSP0UPEGu2D+2OLtjZJU4oIoNCeaP9b Bm+EOUCgQ725Q/Q3VvTrjIrbYaOUi9SlRKCQ4= Received: by 10.213.7.67 with SMTP id c3mr4458718ebc.68.1296207562908; Fri, 28 Jan 2011 01:39:22 -0800 (PST) Received: from localhost.localdomain ([196.35.155.75]) by mx.google.com with ESMTPS id t5sm13676545eeh.20.2011.01.28.01.39.21 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 28 Jan 2011 01:39:22 -0800 (PST) From: Duane Hughes To: alpine-devel@lists.alpinelinux.org Cc: Duane Hughes Subject: [alpine-devel] [PATCH 3/4] testing/lockfile-progs: new aport Date: Fri, 28 Jan 2011 09:30:24 +0000 Message-Id: <1296207025-28687-3-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: utilities for safely unlocking locked files/mailboxes --- testing/lockfile-progs/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 testing/lockfile-progs/APKBUILD diff --git a/testing/lockfile-progs/APKBUILD b/testing/lockfile-progs/APKBUILD new file mode 100644 index 0000000..2b4f3b5 --- /dev/null +++ b/testing/lockfile-progs/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Duane Hughes +# Maintainer: Natanael Copa +pkgname=lockfile-progs +pkgver=0.1.15 +pkgrel=0 +pkgdesc="Programs for locking and unlocking files and mailboxes" +url="http://packages.debian.org/sid/lockfile-progs" +arch="all" +license="GPL" +depends="liblockfile" +makedepends="liblockfile-dev" +install= +subpackages="$pkgname-doc" +source="http://ftp.debian.org/debian/pool/main/l/lockfile-progs/${pkgname}_$pkgver.tar.gz" + +_builddir="$srcdir"/sid + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + + install -d "$pkgdir"/usr/bin + install -d "$pkgdir"/usr/share/man + install -m 755 "$_builddir"/bin/* "$pkgdir"/usr/bin + install -m 644 "$_builddir"/man/* "$pkgdir"/usr/share/man +} + +md5sums="abfcda83a1868073673f4d78066b8f8a lockfile-progs_0.1.15.tar.gz" -- 1.7.3.2 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---