blob: 01e6c21b3ee5549e5e4ef985a50ff0c935cb67b2 (
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=20150813
pkgrel=1
pkgdesc="A graphical Sawfish extension to edit the session preferences"
arch=('any')
url='http://sawfish.wikia.com'
license=('GPL')
depends=('sawfish-git')
makedepends=('git')
provides=('sawfish-session-dialog=0.41')
conflicts=('sawfish-session-dialog')
source=('sawfish-session-dialog::git://github.com/SawfishWM/ssd.git')
md5sums=('SKIP')
_gitname=sawfish-session-dialog
pkgver() {
cd "$srcdir"/$_gitname
echo $(git log -1 --format="%cd" --date=short | sed 's|-||g')
}
build() {
cd "$srcdir"/$_gitname
./configure --prefix=/usr
}
package() {
cd "$srcdir"/$_gitname
make DESTDIR=$pkgdir install
}
|