X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 592E1DCCF3D for ; Mon, 28 Mar 2016 23:44:41 +0000 (UTC) Received: from chaahk.com (chaahk.com [212.83.137.92]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 194DADCB865 for ; Mon, 28 Mar 2016 23:44:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=chaahk.com; s=x; h=Message-Id:Date:Subject:To:From; bh=hK+ylguGU4TKaHf5eZMwvBC4266Etyf8TZap2dyiZP4=; b=vGIIt4pWGndPy2NhdUSsHeLb43cCe4fMkDB97Dc0wfSe7tvLHrep7COzMyEsjH/6LRyAZaSRpJFfO/FW/rsoUbKdye026px/rK6BA158IfImV6Q0bXQXBYzVwFeVRLz1qozEf34mOKpjJLIwWmv+5jQOL9bSxh+wkvuuYxz0voo=; Received: from cpc89568-aztw32-2-0-cust807.18-1.cable.virginm.net ([86.6.59.40] helo=harp.my.domain) by chaahk.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.84) (envelope-from ) id 1akgpq-00035D-VJ for alpine-aports@lists.alpinelinux.org; Tue, 29 Mar 2016 01:44:39 +0200 From: Steeve Chailloux To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/autocutsel Date: Tue, 29 Mar 2016 00:44:33 +0100 Message-Id: <1459208673-2602-1-git-send-email-steeve@chaahk.com> X-Mailer: git-send-email 2.6.6 X-Authenticated-User: steeve@chaahk.com X-Authenticator: plain X-Sender-Verify: SUCCEEDED (sender exists & accepts mail) X-Exim-Version: 4.84 (build at 20-Sep-2014 13:41:08) X-Date: 2016-03-29 01:44:39 X-Connected-IP: 86.6.59.40:49766 X-Message-Linecount: 63 X-Body-Linecount: 56 X-Message-Size: 1837 X-Body-Size: 1583 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://www.nongnu.org/autocutsel/ automated xcutsel --- testing/autocutsel/APKBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 testing/autocutsel/APKBUILD diff --git a/testing/autocutsel/APKBUILD b/testing/autocutsel/APKBUILD new file mode 100644 index 0000000..cfc7a83 --- /dev/null +++ b/testing/autocutsel/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Steeve Chailloux +# Maintainer: Steeve Chailloux +pkgname=autocutsel +pkgver=0.10.0 +pkgrel=0 +pkgdesc="automated xcutsel" +url="http://www.nongnu.org/autocutsel/" +arch="all" +license="GPL2" +depends="" +depends_dev="" +makedepends="$depends_dev libx11-dev libxaw-dev" +subpackages="" +source="https://github.com/sigmike/autocutsel/releases/download/$pkgver/$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 --mandir=/usr/share/man || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="7d5b96e5f7b79b883d8350f104043366 autocutsel-0.10.0.tar.gz" +sha256sums="a2376330aa1a65f36621595a5a4eb5c2cabc16854b69d66c285f11f89bd05e3f autocutsel-0.10.0.tar.gz" +sha512sums="2d9b7114fde67ee217ceee673e32b407eef5b266a9d457a83b35d1c6227e5873cc7928aa10f7d84ce5e8c78d4940ee29985696f49b4015269584f1559f6b6d1d autocutsel-0.10.0.tar.gz" -- 2.6.6 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---