198f422b37
Also expand README to explain how to generate a custom config.h and some hints on using this port as a reference for a private and customized dwm port.
21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
# Description: dynamic window manager
|
|
# URL: http://dwm.suckless.org/
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
# Depends on: xorg-libxft xorg-libxinerama
|
|
|
|
name=dwm
|
|
version=6.1
|
|
release=3
|
|
source=(http://dl.suckless.org/dwm/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
if [ -f $PKGMK_ROOT/config.h ]; then
|
|
cp $PKGMK_ROOT/config.h .
|
|
fi
|
|
|
|
make CC=gcc X11INC=/usr/include
|
|
make DESTDIR=$PKG PREFIX=/usr install
|
|
}
|