mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
50 lines
1.5 KiB
Bash
50 lines
1.5 KiB
Bash
# ODROID-XU3/XU4 Mali GL Driver
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgbase=odroid-xu3-libgl
|
|
pkgname=("${pkgbase}-x11" "${pkgbase}-fb" "${pkgbase}-headers")
|
|
pkgver=r9p0
|
|
pkgrel=1
|
|
_commit=543eb787af5719224c2231490d5ebda71c1ec7a8
|
|
arch=('armv7h')
|
|
url="http://www.hardkernel.com/"
|
|
license=('Proprietary')
|
|
depends=('mesa-libgl')
|
|
makedepends=('git')
|
|
source=("git+https://github.com/mdrjr/5422_mali.git#commit=${_commit}"
|
|
'mali-xu3.conf')
|
|
md5sums=('SKIP'
|
|
'40f5104200cfceb12b4623d219646d4e')
|
|
|
|
package_odroid-xu3-libgl-x11() {
|
|
pkgdesc="ODROID-XU3/XU4 Mali driver (X11)"
|
|
conflicts=('odroid-xu3-libgl')
|
|
provides=('odroid-xu3-libgl')
|
|
|
|
install -d "${pkgdir}"/usr/lib/mali-egl
|
|
install -d "${pkgdir}"/etc/ld.so.conf.d
|
|
cp -a 5422_mali/x11/lib* "${pkgdir}"/usr/lib/mali-egl
|
|
cp "${srcdir}"/mali-xu3.conf "${pkgdir}"/etc/ld.so.conf.d
|
|
}
|
|
|
|
package_odroid-xu3-libgl-fb() {
|
|
pkgdesc="ODROID-XU3/XU4 Mali driver (framebuffer)"
|
|
conflicts=('odroid-xu3-libgl')
|
|
provides=('odroid-xu3-libgl')
|
|
|
|
install -d "${pkgdir}"/usr/lib/mali-egl
|
|
install -d "${pkgdir}"/etc/ld.so.conf.d
|
|
cp -a 5422_mali/fbdev/lib* "${pkgdir}"/usr/lib/mali-egl
|
|
cp "${srcdir}"/mali-xu3.conf "${pkgdir}"/etc/ld.so.conf.d
|
|
}
|
|
|
|
package_odroid-xu3-libgl-headers() {
|
|
pkgdesc="ODROID-XU3/XU4 Mali driver headers"
|
|
conflicts=('opencl-headers')
|
|
provides=('opencl-headers')
|
|
|
|
install -d "${pkgdir}"/usr/include
|
|
cp -a 5422_mali/headers/CL{,_1_2,_2_0} "${pkgdir}"/usr/include
|
|
}
|