first commit
This commit is contained in:
3
src/openbox/.gitignore
vendored
Normal file
3
src/openbox/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/openbox/changes.md
Normal file
2
src/openbox/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 3.6.1
|
||||
First version
|
26
src/openbox/pkg.sh
Normal file
26
src/openbox/pkg.sh
Normal file
@ -0,0 +1,26 @@
|
||||
NAME="openbox"
|
||||
DESC="Highly configurable desktop window manager with extensive standards support"
|
||||
VERSION="3.6.1"
|
||||
FILES=("http://openbox.org/dist/openbox/openbox-$VERSION.tar.gz")
|
||||
HASHES=("b72794996c6a3ad94634727b95f9d204")
|
||||
DEPENDS=(
|
||||
"pango" "dbus" "imlib2" "librsvg"
|
||||
"imagemagick" "pyxdg" "startup-notification"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
2to3-3.11 -w data/autostart/openbox-xdg-autostart
|
||||
sed 's/python/python3/' -i data/autostart/openbox-xdg-autostart
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--disable-static \
|
||||
--docdir=/usr/share/doc/openbox-$VERSION
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
rm -v "$ROOTDIR/usr/share/xsessions/openbox-"{gnome,kde}.desktop
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user