diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-11 13:41:45 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-11 13:41:45 -0300 |
commit | 4856a32c8fd6d6f689492605f9e6253132d40642 (patch) | |
tree | 75711c135257232e6593e0567875bde5948ccb1e /libre/blackbox/PKGBUILD | |
parent | 52557cdc52011f4e74656dc011b78319d019f899 (diff) |
blackbox-0.70.1-12.parabola1: provide shared libbt library
Diffstat (limited to 'libre/blackbox/PKGBUILD')
-rw-r--r-- | libre/blackbox/PKGBUILD | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libre/blackbox/PKGBUILD b/libre/blackbox/PKGBUILD index cca418a9f..8b0d173ab 100644 --- a/libre/blackbox/PKGBUILD +++ b/libre/blackbox/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 100133 2013-11-01 20:20:45Z spupykin $ +# $Id: PKGBUILD 118798 2014-09-11 05:19:42Z bpiotrowski $ # Maintainer (Arch): Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor (Arch): durbatuluk <dvdscripter@gmail.org> # Contributor (Arch): Steve Ponsford <sp4d@lavabit.com> @@ -6,7 +6,7 @@ pkgname=blackbox pkgver=0.70.1 -pkgrel=11.parabola1 +pkgrel=12.parabola1 pkgdesc="A window manager for X11, without nonfree programs on the menu" url="http://${pkgname}wm.sourceforge.net/" arch=('i686' 'x86_64' 'mips64el') @@ -19,6 +19,7 @@ source=(http://downloads.sourceforge.net/${pkgname}wm/$pkgname-$pkgver.tar.gz bbdock.patch bsetbg-feh.patch textpropertytostring-unconditional.patch + blackbox-0.70.1-asneeded.patch menu) md5sums=('2d173b95ca5e64ef478c6a5d2deee9df' 'bc7a1335d77cdeb6f85cba4d01e68e63' @@ -27,14 +28,20 @@ md5sums=('2d173b95ca5e64ef478c6a5d2deee9df' '3b92ad246f07126dd55ae9634d6e875e' 'f4fefa5f25c65c5d9a601e9c14646757') -build() { +prepare() { cd $srcdir/$pkgname-$pkgver patch -Np1 -i ../gcc4.3.patch patch -Np0 -i ../bbdock.patch patch -Np0 -i ../bsetbg-feh.patch patch -Np1 -i ../textpropertytostring-unconditional.patch + patch -Np0 -i ../blackbox-0.70.1-asneeded.patch + + autoreconf -fi +} +build() { + cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr --mandir=/usr/share/man make } |