contrib/dwm/Pkgfile
John Vogel 198f422b37 dwm: remove config.h
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.
2018-03-07 08:26:42 -05:00

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
}