summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 77e37e968657e72f0e85bb3e959cf19a5ab69f37 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Maintainer: aksr <aksr at t-com dot me>
pkgname=wmii-git
pkgver=r2818.a0b47f29
pkgrel=1
epoch=
pkgdesc="A dynamic window manager for X11."
arch=('i686' 'x86_64')
url="https://github.com/0intro/wmii"
license=('MIT')
categories=()
groups=()
depends=('libx11' 'libxinerama' 'libxrandr')
makedepends=('git')
optdepends=(
  'dash: for use of the default wmiirc configs'
  'libxft: for anti-aliased font support'
  'xorg-xmessage: for use of the default wmiirc configs'
  'plan9port: for use of the alternative plan9port wmiirc'
  'python2: for use of the alternative Python wmiirc'
  'ruby-rumai: for use of the alternative Ruby wmiirc'
)
checkdepends=()
provides=()
conflicts=("${pkgname%-*}" "${pkgname%-*}-hg")
replaces=()
backup=()
options=()
changelog=
install=
source=("$pkgname::git+$url")
noextract=()
md5sums=('SKIP')

pkgver() {
  cd "$srcdir/$pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
  cd "$srcdir/$pkgname"
  sed -i 's/README/&.md/' Makefile
}

build() {
  cd "$srcdir/$pkgname"
  make PREFIX=/usr
}

package() {
  cd "$srcdir/$pkgname"
  make DESTDIR="$pkgdir/" PREFIX=/usr install
  install -Dm644 README.md $pkgdir/usr/share/doc/${pkgname%-*}/README.md
  install -Dm644 LICENSE $pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE
  rm $pkgdir/usr/share/doc/wmii/LICENSE
}