blob: d94fd9716c74b40eb52cd00f2dd13839ff8520de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Gestionnaire de fenêtres Openbox
# URL: http://icculus.org/openbox/index.php/Main_Page
# Maintainer: NuTyX core team
# Packager: geantbrun at gmail dot com
# Depends on: startup-notification, pango, hal
name=openbox
version=3.4.8
release=1
source=(http://icculus.org/openbox/releases/$name-$version.tar.gz)
build()
{
cd $name-$version
./configure --prefix=/usr \
--with-x \
--enable-startup-notification \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}
|