X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from st11p00mm-asmtp001.mac.com (st11p00mm-asmtp001.mac.com [17.172.81.0]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 0D1CCDC01BD for ; Mon, 16 Feb 2015 13:30:15 +0000 (UTC) Received: from matterhorn (weisshorn.alpinelinux.uk [31.193.133.175]) by st11p00mm-asmtp001.mac.com (Oracle Communications Messaging Server 7.0.5.35.0 64bit (built Dec 4 2014)) with ESMTPSA id <0NJV004RN9IBEG30@st11p00mm-asmtp001.mac.com> for alpine-devel@lists.alpinelinux.org; Mon, 16 Feb 2015 13:30:13 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.13.68,1.0.33,0.0.0000 definitions=2015-02-16_02:2015-02-14,2015-02-16,1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=7.0.1-1412110000 definitions=main-1502160134 Date: Mon, 16 Feb 2015 13:30:11 +0000 (GMT) From: ScrumpyJack X-X-Sender: nicholas@st.ilet.to To: Alpine Devel List Subject: [alpine-devel] [PATCH] testing/cadaver: new aport Message-id: User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII If my mailer sends as flowed text or otherwise muddles with the body of this email, here is also a sprunge of the patch http://sprunge.us/cRPB --- http://webdav.org/cadaver/ Cadaver is a command line webDAV client for Linux --- testing/cadaver/APKBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 testing/cadaver/APKBUILD diff --git a/testing/cadaver/APKBUILD b/testing/cadaver/APKBUILD new file mode 100644 index 0000000..16e493b --- /dev/null +++ b/testing/cadaver/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: ScrumpyJack +# Maintainer: +pkgname=cadaver +pkgver=0.23.3 +pkgrel=0 +pkgdesc="Cadaver is a command line webDAV client for Linux" +url="http://webdav.org/cadaver/" +arch="all" +license="GPL" +depends="" +depends_dev="" +makedepends="gettext-dev libproxy-dev openssl-dev" +install="" +subpackages="$pkgname-lang $pkgname-doc" +source="http://webdav.org/cadaver/${pkgname}-${pkgver}.tar.gz" + +_builddir=${srcdir}/${pkgname}-${pkgver} +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --prefix=/usr \ + --with-ssl=openssl \ + || return 1 + make +} + +package() { + cd "$_builddir" + make prefix=$pkgdir/usr install +} + +md5sums="502ecd601e467f8b16056d2acca39a6f cadaver-0.23.3.tar.gz" +sha256sums="fd4ce68a3230ba459a92bcb747fc6afa91e46d803c1d5ffe964b661793c13fca cadaver-0.23.3.tar.gz" +sha512sums="48fe0a266be0ca7239f325377e5e2a8dc57a5d60466c7160e36c060ad24c09a50727695b9fa931844b1e66e173ebbb838f390d6c60fd07b614bd3b636cd4dd41 cadaver-0.23.3.tar.gz" -- best wishes nicholas Not sent from a tablet or smartphone. --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---