summaryrefslogtreecommitdiffstats
path: root/dwm/PKGBUILD
blob: 6dff4e73bfd318c8777c8124a903a23435273d72 (plain) (blame)
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
# Maintainer: Justin Gassner <justin.gassner@mailbox.org>

_pkgname=dwm
pkgname=$_pkgname-jxir
pkgver=6.2.r28.g9900688
pkgrel=1
pkgdesc='A dynamic window manager for X'
arch=('x86_64')
url="https://$_pkgname.suckless.org"
license=('MIT')
depends=('libxft' 'libxinerama')
makedepends=('git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+https://git.jxir.de/$_pkgname")
sha256sums=('SKIP')

pkgver(){
  cd "$_pkgname"
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
  cd "$_pkgname"
  for branch in noborder pertag fancybar config; do
    git merge --no-edit origin/$branch
  done
}

build() {
  cd "$_pkgname"
  make
}

package() {
  cd "$_pkgname"
  make DESTDIR="$pkgdir" install
  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
  install -Dm644 README -t "$pkgdir/usr/share/doc/$_pkgname"
}