22 lines
511 B
Plaintext
22 lines
511 B
Plaintext
# Description: The Pek Window Manager
|
|
# URL: http://pekwm.org
|
|
# Maintainer: Rene Lengwinat, rugek at dirtyhack dot net
|
|
# Depends on: x11,imlib2
|
|
|
|
name=pekwm
|
|
version=0.1.6
|
|
release=1
|
|
source=( http://pekwm.org/files/$name-$version.tar.bz2 )
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--enable-xft \
|
|
--enable-pcre \
|
|
--enable-imlib2 \
|
|
--mandir=/usr/man \
|
|
--disable-xinerama
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|