16 lines
443 B
Plaintext
16 lines
443 B
Plaintext
|
# Description: EGL External Platform interface
|
||
|
# URL: https://github.com/NVIDIA/eglexternalplatform
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on:
|
||
|
|
||
|
name=eglexternalplatform
|
||
|
version=1.1
|
||
|
release=1
|
||
|
source=(https://github.com/NVIDIA/eglexternalplatform/archive/$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
install -Dt $PKG/usr/include/EGL -m644 interface/*
|
||
|
install -Dt $PKG/usr/share/pkgconfig -m644 *.pc
|
||
|
}
|