diff options
author | Nicolás Reynolds <fauno@parabola.nu> | 2013-04-12 13:46:13 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@parabola.nu> | 2013-04-12 13:46:13 -0300 |
commit | 11d812072c9f8ae4bbdb688cdcde129d7ad2cc69 (patch) | |
tree | ed0eaa83aaf0ca408cb8a171deba7fe8ccae5db7 /libre/bumblebee-libre/PKGBUILD | |
parent | f2bc31baf8e8ad48a71b9ccb216b88f4f1bb51ef (diff) | |
parent | 33522bd5e5e4fdadb22b76d5f12a2d89d344067a (diff) |
Merge branch 'master' of vparabola:abslibre
Diffstat (limited to 'libre/bumblebee-libre/PKGBUILD')
-rw-r--r-- | libre/bumblebee-libre/PKGBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/libre/bumblebee-libre/PKGBUILD b/libre/bumblebee-libre/PKGBUILD index aff067a94..8805ff9d1 100644 --- a/libre/bumblebee-libre/PKGBUILD +++ b/libre/bumblebee-libre/PKGBUILD @@ -4,10 +4,11 @@ _pkgname=bumblebee pkgname=bumblebee-libre pkgver=3.1 -pkgrel=5.1 +pkgrel=6.2 pkgdesc="NVIDIA Optimus support for GNU/Linux through VirtualGL, without nonfree nvidia driver support" arch=('i686' 'x86_64') -depends=('virtualgl' 'libbsd' 'glib2' 'mesa-libgl') +depends=('virtualgl' 'glib2' 'mesa-libgl') +makedepends=('help2man') optdepends=('xf86-video-nouveau: nouveau driver' 'nouveau-dri: 3D acceleration features of nouveau' 'bbswitch: switch on/off discrete card' @@ -16,9 +17,9 @@ if [ "$CARCH" = "x86_64" ]; then optdepends[${#optdepends[@]}]='lib32-virtualgl: run 32bit applications with optirun' optdepends[${#optdepends[@]}]='lib32-primus: faster back-end for optirun' fi -replaces=('bumblebee') +replaces=('bumblebee' 'nvidia-libgl') conflicts=('bumblebee' 'nvidia-libgl') -provides=("bumblebee=$pkgver"'nvidia-libgl') +provides=("bumblebee=$pkgver" 'nvidia-libgl') url="http://www.bumblebee-project.org" license=("GPL3") install='bumblebee.install' @@ -42,7 +43,8 @@ build() { ./configure \ CONF_DRIVER=nouveau \ --prefix=/usr \ - --sysconfdir=/etc + --sysconfdir=/etc \ + --without-pidfile make } |