summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-11-29 14:55:20 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-11-29 14:55:20 -0200
commit1b7b24d276932f9dea464099ea1be3f4c13d8a79 (patch)
tree14571085624bffd4b76ca98b1f49596a9f9c7d2b /libre
parent602ade17b2bf05e5f1b8e1a1169d88548794ea4f (diff)
downloadabslibre-1b7b24d276932f9dea464099ea1be3f4c13d8a79.tar.gz
abslibre-1b7b24d276932f9dea464099ea1be3f4c13d8a79.tar.bz2
abslibre-1b7b24d276932f9dea464099ea1be3f4c13d8a79.zip
midori-gtk3-libre-0.5.6-2: Fix for FS#37892 => https://bugs.archlinux.org/task/37892 , different libdir
Diffstat (limited to 'libre')
-rw-r--r--libre/midori-gtk3-libre/PKGBUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/libre/midori-gtk3-libre/PKGBUILD b/libre/midori-gtk3-libre/PKGBUILD
index 47d554792..66083d847 100644
--- a/libre/midori-gtk3-libre/PKGBUILD
+++ b/libre/midori-gtk3-libre/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 101250 2013-11-20 15:35:01Z arodseth $
+# $Id: PKGBUILD 101601 2013-11-28 22:21:02Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Andreas Radke <andyrtr@archlinux.org>
@@ -10,7 +10,7 @@
_pkgname=midori-gtk3
pkgname=midori-gtk3-libre
pkgver=0.5.6
-pkgrel=1
+pkgrel=2
pkgdesc='Lightweight web browser (GTK3), without non-privacy search providers'
arch=('x86_64' 'i686')
url='http://www.midori-browser.org/'
@@ -53,14 +53,14 @@ prepare() {
build() {
cd "${_pkgname/-gtk3}-$pkgver"
- ./configure \
- --prefix=/usr \
- --enable-gtk3
+ mkdir -p build
+ cd build
+ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DUSE_GTK3=1
make
}
package() {
- make -C "${_pkgname/-gtk3}-$pkgver" DESTDIR="$pkgdir" install
+ make -C "${_pkgname/-gtk3}-$pkgver/build" DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: