summaryrefslogtreecommitdiff
path: root/community/wmname
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/wmname
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/wmname')
-rw-r--r--community/wmname/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/wmname/PKGBUILD b/community/wmname/PKGBUILD
new file mode 100644
index 000000000..599d35733
--- /dev/null
+++ b/community/wmname/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 70751 2012-05-16 10:53:27Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Vincent Kriek <vincent@vincentkriek.nl>
+
+pkgname=wmname
+pkgver=0.1
+pkgrel=2
+pkgdesc="An utility to set the name of your window manager"
+url="http://tools.suckless.org/wmname"
+license=('custom')
+depends=('libx11')
+arch=('i686' 'x86_64')
+source=("http://dl.suckless.org/tools/wmname-$pkgver.tar.gz")
+md5sums=('6903d299f84d335e529fbd2c1d6e49fe')
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+ make
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+ make PREFIX="${pkgdir}"/usr install
+ install -Dm0644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}