summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f58e298cfa952ce28592d94ae21c3e44e606925e (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
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=sawfish-session-dialog-git
pkgver=20190126
pkgrel=2
pkgdesc="A graphical Sawfish extension to edit the session preferences"
arch=('any')
url='http://sawfish.wikia.com'
license=('GPL')
depends=('sawfish')
makedepends=('git')
provides=('sawfish-session-dialog=0.41')
conflicts=('sawfish-session-dialog')
source=('sawfish-session-dialog::git+https://github.com/SawfishWM/ssd.git')
md5sums=('SKIP')

pkgver() {
  cd ${pkgname%-git}
  echo $(git log -1 --format="%cd" --date=short | sed 's|-||g')
}

build() {
  cd ${pkgname%-git}
  ./configure --prefix=/usr
}

package() {
  cd ${pkgname%-git}
  make DESTDIR="$pkgdir" install
}