core/openbox/PKGBUILD

54 lines
1.7 KiB
Bash
Raw Normal View History

2014-11-14 06:49:11 +08:00
pkgname=openbox
2015-07-02 10:56:52 +08:00
pkgver=3.6.1
pkgrel=2
2014-11-14 06:49:11 +08:00
pkgdesc='Highly configurable and lightweight X11 window manager'
arch=('i686' 'x86_64')
url='http://openbox.org'
license=('GPL')
depends=('startup-notification' 'libxml2' 'libxinerama' 'libxrandr'
'libxcursor' 'pango' 'imlib2' 'librsvg' 'libsm')
optdepends=('plasma-workspace: for the KDE/Openbox xsession'
2014-11-14 06:49:11 +08:00
'python2-xdg: for the openbox-xdg-autostart script')
backup=('etc/xdg/openbox/menu.xml' 'etc/xdg/openbox/rc.xml'
'etc/xdg/openbox/autostart' 'etc/xdg/openbox/environment')
2015-07-02 10:56:52 +08:00
source=(http://openbox.org/dist/openbox/${pkgname}-${pkgver}.tar.gz
2014-11-14 06:49:11 +08:00
openbox-3.5.0-title-matching.patch
openbox-3.5.0-which-2.20.patch)
2015-07-02 10:56:52 +08:00
md5sums=('b72794996c6a3ad94634727b95f9d204'
2014-11-14 06:49:11 +08:00
'0a11d7149da210a31ef88f8a9c717711'
'7ca3b5244bb092d46f5bcf1e2bdf4a18')
prepare() {
cd $pkgname-$pkgver
patch -Np1 -i "$srcdir"/openbox-3.5.0-title-matching.patch # OB#5277
patch -Np1 -i "$srcdir"/openbox-3.5.0-which-2.20.patch # FS#11455
sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
data/autostart/openbox-xdg-autostart
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr \
--with-x \
--enable-startup-notification \
--sysconfdir=/etc \
--libexecdir=/usr/lib/openbox
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
# GNOME Panel is no longer available in the official repositories
rm -r "$pkgdir"/usr/bin/{gdm-control,gnome-panel-control,openbox-gnome-session} \
"$pkgdir"/usr/share/gnome{,-session} \
"$pkgdir"/usr/share/man/man1/openbox-gnome-session.1 \
"$pkgdir"/usr/share/xsessions/openbox-gnome.desktop
sed -i 's:startkde:/usr/bin/\0:' \
"$pkgdir"/usr/share/xsessions/openbox-kde.desktop
}