22 lines
699 B
Plaintext
22 lines
699 B
Plaintext
|
# Description: An X11 window manager with a NEXTSTEP look and feel
|
|||
|
# URL: http://www.windowmaker.org/
|
|||
|
# Maintainer: Per Lid<69>n <per@fukt.bth.se>
|
|||
|
# Depends on: x11, libtiff, libungif
|
|||
|
|
|||
|
name=windowmaker
|
|||
|
version=0.92.0
|
|||
|
release=1
|
|||
|
source=(ftp://ftp.windowmaker.org/pub/source/release/WindowMaker-$version.tar.bz2)
|
|||
|
|
|||
|
build() {
|
|||
|
cd WindowMaker-$version
|
|||
|
./configure --prefix=/usr
|
|||
|
make
|
|||
|
make DESTDIR=$PKG install
|
|||
|
rm -rf $PKG/usr/share/WindowMaker/{README*,menu.*,plmenu.*} \
|
|||
|
$PKG/usr/lib/locale $PKG/usr/man/sk $PKG/usr/bin/wm-oldmenu2new
|
|||
|
# Bugfix for WPrefs
|
|||
|
mkdir -p $PKG/usr/GNUstep/Applications
|
|||
|
ln -sf ../../share/WPrefs $PKG/usr/GNUstep/Applications/WPrefs.app
|
|||
|
}
|