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 4AB0DDC0E90 for ; Fri, 15 Apr 2016 17:20:18 +0000 (UTC) Received: from smtp1.openmailbox.org (smtp1.openmailbox.org [62.4.1.35]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id CFD54DC0174 for ; Fri, 15 Apr 2016 17:20:17 +0000 (UTC) Received: by mail2.openmailbox.org (Postfix, from userid 1004) id D0A2E2AC5254; Fri, 15 Apr 2016 19:20:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=openmailbox.org; s=openmailbox; t=1460740815; bh=gmyKjpMXSmcQVLvF/e2Q6hxj58LOp/4Bk6ZdmlwI108=; h=From:To:Subject:Date:From; b=aqXA9xhESVVVreL4V/5oB61/V0tp4YkhAwEUW0MLDkUgBoXmqES+OIHjNM7jf5VVk m3BA9k9f2ht7bLDxCxU6IQyyGEgMTJKclD1WXlH3NPShm3nTJ4DC3z+3oq1HHkJ3AM UBcoe8uGRBz8mOnGOq0/j0VBpERbJ68qGEK1b57M= X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on openmailbox-b2 X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,NO_RECEIVED,NO_RELAYS,TVD_SPACE_RATIO,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 From: Camille Scholtz DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=openmailbox.org; s=openmailbox; t=1460740806; bh=gmyKjpMXSmcQVLvF/e2Q6hxj58LOp/4Bk6ZdmlwI108=; h=From:To:Subject:Date:From; b=iHN9uxR28diFCkKHfxPfOGCBYjPky4KIaY8myMwgjuTtz24E4wtNTxxCMqIzQV6VD DF+Z9vdFhk2Cxs8IO4t54QgRXOHXBoKiqXzO+jPq+VsylP4D11nT7ZLKY+xATWFPQb wVdhZiq6YvIYHuiTxWdAd7cJLHp+8xdEO2I6Qq04= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/xdesktop: new aport Date: Fri, 15 Apr 2016 19:20:03 +0200 Message-Id: <1460740803-19352-1-git-send-email-onodera@openmailbox.org> X-Mailer: git-send-email 2.8.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://github.com/onodera-punpun/xdesktop outputs and changes X virtual desktop --- testing/xdesktop/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/xdesktop/APKBUILD diff --git a/testing/xdesktop/APKBUILD b/testing/xdesktop/APKBUILD new file mode 100644 index 0000000..45e6757 --- /dev/null +++ b/testing/xdesktop/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Camille Scholtz +# Maintainer: Camille Scholtz +pkgname=xdesktop +pkgver=0.3 +pkgrel=0 +pkgdesc="output and change X virtual desktop" +url="https://github.com/onodera-punpun/xdesktop" +arch="all" +license="unlicense" +depends="" +depends_dev="xcb-util-wm-dev" +makedepends="$depends_dev" +install="" +subpackages="" +source="saveas-https://github.com/onodera-punpun/$pkgname/archive/$pkgver.tar.gz/$pkgname-$pkgver.tar.gz" + +builddir="$srcdir"/$pkgname-$pkgver +build() { + cd "$builddir" + make || return 1 +} + +package() { + cd "$builddir" + make PREFIX=/usr DESTDIR="$pkgdir" install || return 1 +} + +md5sums="fbc59a158d93dcee518bd6298a2c3530 xdesktop-0.3.tar.gz" +sha256sums="b2c9cd6aaae3b13c4fd8f61799b12454387be838df9078db6faf14dbfaef01ca xdesktop-0.3.tar.gz" +sha512sums="125d880c0d2af5c847b74caf5fc51f32d597dc00f25dc334fa5a2664438b248da5989d3f4df2bbd7c5998511cdcf2144625ebc0653ad481dd88378551a7ae529 xdesktop-0.3.tar.gz" -- 2.8.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---