summaryrefslogtreecommitdiff
path: root/community/blackbox/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/blackbox/PKGBUILD')
-rw-r--r--community/blackbox/PKGBUILD31
1 files changed, 18 insertions, 13 deletions
diff --git a/community/blackbox/PKGBUILD b/community/blackbox/PKGBUILD
index af1ff72d1..b312b37c5 100644
--- a/community/blackbox/PKGBUILD
+++ b/community/blackbox/PKGBUILD
@@ -1,34 +1,39 @@
-# $Id: PKGBUILD 7982 2010-01-13 18:45:53Z dgriffiths $
+# $Id: PKGBUILD 44299 2011-04-05 08:55:32Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: durbatuluk <dvdscripter@gmail.org>
# Contributor: Steve Ponsford <sp4d@lavabit.com>
pkgname=blackbox
pkgver=0.70.1
-pkgrel=8
+pkgrel=9
pkgdesc="A window manager for X11"
+url="http://blackboxwm.sourceforge.net/"
arch=('i686' 'x86_64')
-depends=('libxft' 'libxext' 'xorg-server')
+depends=('gcc-libs' 'libxft' 'libxext' 'libx11')
license=('MIT')
options=('!libtool')
source=(http://downloads.sourceforge.net/blackboxwm/$pkgname-$pkgver.tar.gz
- gcc4.3.patch bbdock.patch bsetbg-feh.patch)
-url="http://blackboxwm.sourceforge.net/"
+ gcc4.3.patch
+ bbdock.patch
+ bsetbg-feh.patch
+ textpropertytostring-unconditional.patch)
md5sums=('2d173b95ca5e64ef478c6a5d2deee9df'
'bc7a1335d77cdeb6f85cba4d01e68e63'
'69c5a5e981b087b2d8267cab996b48dd'
- 'e7fb0d5bfd95820c0194ec73df66dadc')
+ 'e7fb0d5bfd95820c0194ec73df66dadc'
+ '3b92ad246f07126dd55ae9634d6e875e')
build() {
- cd $startdir/src/$pkgname-$pkgver
+ cd $srcdir/$pkgname-$pkgver
- patch -Np1 -i ../gcc4.3.patch || return 1
- patch -Np0 -i ../bbdock.patch || return 1
- patch -Np0 -i ../bsetbg-feh.patch || return 1
+ patch -Np1 -i ../gcc4.3.patch
+ patch -Np0 -i ../bbdock.patch
+ patch -Np0 -i ../bsetbg-feh.patch
+ patch -Np1 -i ../textpropertytostring-unconditional.patch
./configure --prefix=/usr --mandir=/usr/share/man
- make || return 1
- make DESTDIR=$startdir/pkg install
+ make
+ make DESTDIR=$pkgdir install
- install -D -m644 LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
+ install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}