23 lines
604 B
Plaintext
23 lines
604 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-rc2
|
|
release=3
|
|
source=(http://www.icculus.org/$name/releases/$name-$version.tar.gz \
|
|
pipedsplitgradient.diff)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
sed -i -e 's/pango_font_description_set_size/pango_font_description_set_absolute_size/' render/font.c
|
|
|
|
patch -Np0 -i $SRC/pipedsplitgradient.diff
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|