summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1c90b21f92f9c4fca19d9b6900336d17ada251b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=mcwm-git
pkgver=20130209.2.r9.g33bd901
pkgrel=1
pkgdesc="A minimalist floating window manager written on top of the XCB"
arch=('i686' 'x86_64')
url="http://hack.org/mc/hacks/mcwm/"
license=('ISC')
depends=('xcb-util-wm' 'xcb-util-keysyms')
makedepends=('git')
provides=('mcwm')
conflicts=('mcwm' '2bwm' '2bwm-git') # because of /usr/bin/hidden program
source=("$pkgname::git://hack.org/mcwm" "mcwm.desktop")
md5sums=('SKIP'
	 '8daed020f1a9df4b774207b30d954c53')

pkgver() {
  cd $pkgname
  git describe --long --tags | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
}
prepare() {
  cd $pkgname
  sed -i 's,/man/man1,/share/man/man1,' Makefile
}
build() {
  cd $pkgname
  make
}
package() {
  cd $pkgname
  install -d "$pkgdir/usr/bin"
  install -d "$pkgdir/usr/share/man/man1"
  make "PREFIX=$pkgdir/usr" install
  install -Dm644 "$srcdir/mcwm.desktop" "$pkgdir/usr/share/xsessions/mcwm.desktop"
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}