X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 81FF5DC02AF for ; Wed, 12 Feb 2014 01:30:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=it-offshore.co.uk; s=default; h=Message-Id:Date:Subject:Cc:To:From; bh=kz1myv1MgQDnsy5WDoUhztkF/weFvFbZUksxmy6U/WA=; b=Pen3HiJDruOlhTTPAxkw/K0OvYIbCxwu/ak/wvZmXTkQlzym6E2OFEn8dm+L+l28hBJodjTSWH9KldhAQeqgcG5s2qscbIGOx20NAuInpYpo5ddRw4gjTR2jYZ1Emdp8; Received: from a95-93-2-88.cpe.netcabo.pt ([95.93.2.88]:45244 helo=alpine.my.domain) by apollo.thewebhostserver.com with esmtpsa (UNKNOWN:AES128-SHA256:128) (Exim 4.82) (envelope-from ) id 1WDOes-003KfP-Bv; Wed, 12 Feb 2014 01:30:38 +0000 From: IT Offshore To: alpine-devel@lists.alpinelinux.org Cc: IT Offshore Subject: [alpine-devel] [PATCH] testing/duply - new Date: Wed, 12 Feb 2014 01:30:27 +0000 Message-Id: <1392168627-23485-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 1.8.5.4 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Simple shell frontend for Duplicity --- testing/duply/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/duply/APKBUILD diff --git a/testing/duply/APKBUILD b/testing/duply/APKBUILD new file mode 100644 index 0000000..6605c4d --- /dev/null +++ b/testing/duply/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: IT Offshore +# Maintainer: +pkgname=duply +_mainver=1.6 +pkgver=$_mainver.0 +pkgrel=0 +pkgdesc="A shell front end for duplicity. It manages backup job settings in profiles and allows to batch execute commands." +url="http://duply.net/" +arch="noarch" +license="GPLv2" +depends="bash duplicity gnupg" +depends_dev="" +makedepends="$depends_dev" +install="" +subpackages="" +source="http://downloads.sourceforge.net/project/ftplicity/duply%20%28simple%20duplicity%29/${_mainver}.x/${pkgname}_${pkgver}.tgz" + +_builddir="$srcdir"/${pkgname}_$pkgver + +package() { + cd "$_builddir" + install -m755 -D ./duply \ + "$pkgdir"/usr/bin/duply || return 1 +} + +md5sums="1a17b830a97184c09d4d3c7697e04592 duply_1.6.0.tgz" +sha256sums="0ebd72f93aa44aa67da2c825926a50f7d4abb16798893305a6c331673ef13ec4 duply_1.6.0.tgz" +sha512sums="1071edddcbbe968f6242375cc0c34a5d9da2af7ef7655daa25124b877f1ac80493ffbda750a45a4e92dc555b168f8862ab4d2332777039fc5a5a8118f667cab7 duply_1.6.0.tgz" -- 1.8.5.4 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---