mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
extra/libglvnd to 1.0.0-1
This commit is contained in:
parent
86ab7504d6
commit
8002865a91
1 changed files with 12 additions and 13 deletions
|
@ -5,23 +5,21 @@
|
|||
# - disable assembly on !armv7h
|
||||
|
||||
pkgname=libglvnd
|
||||
pkgver=0.2.999+g4ba53457
|
||||
_commit=4ba5345742d6c98b528ac28fb7127006d2cc3f75
|
||||
pkgrel=2
|
||||
pkgver=1.0.0
|
||||
pkgrel=1
|
||||
pkgdesc="The GL Vendor-Neutral Dispatch library"
|
||||
arch=('i686' 'x86_64')
|
||||
arch=('x86_64')
|
||||
url="https://github.com/NVIDIA/libglvnd"
|
||||
license=('custom:BSD-like')
|
||||
makedepends=('libxext' 'libx11' 'glproto' 'git' 'python')
|
||||
makedepends=('libxext' 'libx11' 'glproto' 'python')
|
||||
provides=('libgl' 'libegl' 'libgles')
|
||||
#source=("git+https://github.com/NVIDIA/libglvnd.git#tag=v$pkgver"
|
||||
source=("git+https://github.com/NVIDIA/libglvnd.git#commit=$_commit"
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/NVIDIA/libglvnd/archive/v$pkgver.tar.gz"
|
||||
LICENSE)
|
||||
sha256sums=('SKIP'
|
||||
'1a99f7487849c41fc3520e0af3dfcf28a0df05e78956d9ec58c2c52b1f20a77d')
|
||||
sha512sums=('c6040b0a508a6b74d7113f8e375fcaf93ec6f2875504953f30e2882e58e22f954bd4027a7d9ab8ac41abef266039e5834fdaf4ce2a69d5d98acf3bbdd54f04b6'
|
||||
'bf0f4a7e04220a407400f89226ecc1f798cc43035f2538cc8860e5088e1f84140baf0d4b0b28f66e4b802d4d6925769a1297c24e1ba39c1c093902b2931781a5')
|
||||
|
||||
build() {
|
||||
cd $pkgname
|
||||
cd $pkgname-$pkgver
|
||||
./autogen.sh
|
||||
[[ $CARCH != "armv7h" ]] && CONFIG="--disable-asm"
|
||||
./configure --prefix=/usr $CONFIG
|
||||
|
@ -31,8 +29,9 @@ build() {
|
|||
package() {
|
||||
# libglvnd needs mesa for indirect rendering
|
||||
depends=('libxext' 'mesa' 'opengl-driver')
|
||||
cd $pkgname
|
||||
make DESTDIR="${pkgdir}" install
|
||||
|
||||
install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
|
||||
install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue