X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx.bit-strickerei.de (mx.bit-strickerei.de [78.47.233.102]) by lists.alpinelinux.org (Postfix) with ESMTP id 5D8D55C415E for ; Mon, 4 Jul 2016 22:03:44 +0000 (GMT) From: Stefan Wagner To: alpine-aports@lists.alpinelinux.org Cc: Stefan Wagner Subject: [alpine-aports] [PATCH] testing/wmname: new aport Date: Tue, 5 Jul 2016 00:03:38 +0200 Message-Id: <20160704220338.25043-1-stw@bit-strickerei.de> X-Mailer: git-send-email 2.9.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Sets the window manager name property of the root window http://tools.suckless.org/x/wmname --- testing/wmname/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/wmname/APKBUILD diff --git a/testing/wmname/APKBUILD b/testing/wmname/APKBUILD new file mode 100644 index 0000000..1dce59a --- /dev/null +++ b/testing/wmname/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Stefan Wagner +# Maintainer: Stefan Wagner +pkgname=wmname +pkgver=0.1 +pkgrel=0 +pkgdesc="Sets the window manager name property of the root window" +url="http://tools.suckless.org/x/wmname" +arch="all" +license="MIT" +makedepends="libx11-dev" +source="http://dl.suckless.org/tools/wmname-0.1.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + make +} + +package() { + cd "$builddir" + make PREFIX=/usr DESTDIR=$pkgdir install +} + +md5sums="6903d299f84d335e529fbd2c1d6e49fe wmname-0.1.tar.gz" +sha256sums="559ad188b2913167dcbb37ecfbb7ed474a7ec4bbcb0129d8d5d08cb9208d02c5 wmname-0.1.tar.gz" +sha512sums="e57100f8de2579f4090c0aaf5a5b134d03bcbcdca5c6d005b12ce39ad322d96651bb13d151cf259e935e6c50e7b21bde43a4eace112be80983a92f92b99f192f wmname-0.1.tar.gz" -- 2.9.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---