23 lines
545 B
Plaintext
23 lines
545 B
Plaintext
# Description: Fast, lightweight, standards-compliant window manager
|
|
# URL: http://www.icculus.org/openbox/
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: x11, glib, libxml2, pango
|
|
|
|
name=openbox
|
|
version=3.3
|
|
release=2
|
|
source=(http://www.icculus.org/$name/releases/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -d $PKG/usr/share/applications
|
|
mv $PKG/usr/share/gnome/wm-properties/openbox.desktop \
|
|
$PKG/usr/share/applications
|
|
}
|