blob: 5812180cd6065741a242f827a741b9f59e1edfa6 (
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
|
pkgname=windwm
pkgver=1.5
pkgrel=1
pkgdesc="Wind is window manager implements most parts of the ICCCM and EWMH/NetWM standards"
arch=('x86_64' 'i686')
url="http://windwm.sourceforge.net/"
license=('custom')
depends=('libxft')
source=("http://downloads.sourceforge.net/project/windwm/wind-${pkgver}.tar.gz"
"windwm.desktop")
sha1sums=('7924ee392c531674b94efa44a49787e1e377763a'
'fdf5db200cf880328254dd01015e06c0de807655')
build() {
cd "$srcdir/wind-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/wind-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/windwm/LICENSE"
cd "$srcdir"
install -Dm0644 windwm.desktop "$pkgdir/usr/share/xsessions/windwm.desktop"
}
|