19 lines
633 B
Plaintext
19 lines
633 B
Plaintext
# Description: Minimalistic tiling window manager
|
|
# URL: https://opensource.conformal.com/wiki/spectrwm
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: xorg-libxrender fontconfig xorg-xcb-util-keysyms xorg-xcb-util-wm
|
|
|
|
name=spectrwm
|
|
version=2.6.2
|
|
release=1
|
|
source=(https://opensource.conformal.com/snapshots/$name/$name-$version.tgz
|
|
$name-remove_libswmhack.patch)
|
|
|
|
build () {
|
|
cd $name-$version/linux
|
|
patch -p 1 -d .. -i $SRC/$name-remove_libswmhack.patch
|
|
make PREFIX=/usr MANDIR=/usr/man DESTDIR=$PKG install
|
|
rm -r $PKG/usr/{man/??/,share}
|
|
ln -sf spectrwm $PKG/usr/bin/scrotwm
|
|
}
|