mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
31 lines
841 B
Bash
31 lines
841 B
Bash
|
# ODROID-C2 Mali GL Driver
|
||
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
|
||
|
buildarch=8
|
||
|
|
||
|
pkgbase=odroid-c2-libgl
|
||
|
pkgname=("${pkgbase}-fb")
|
||
|
pkgver=r5p1
|
||
|
pkgrel=1
|
||
|
_commit=228b2e75bea3426661437d5642fbae3a376895fd
|
||
|
arch=('aarch64')
|
||
|
url="http://www.hardkernel.com/"
|
||
|
license=('Proprietary')
|
||
|
depends=('mesa-libgl')
|
||
|
makedepends=('git')
|
||
|
source=("git+https://github.com/mdrjr/c2_mali.git#commit=${_commit}"
|
||
|
'mali-c2.conf')
|
||
|
md5sums=('SKIP'
|
||
|
'40f5104200cfceb12b4623d219646d4e')
|
||
|
|
||
|
package_odroid-c2-libgl-fb() {
|
||
|
pkgdesc="ODROID-C2 Mali driver (framebuffer)"
|
||
|
conflicts=('odroid-c2-libgl')
|
||
|
provides=('odroid-c2-libgl')
|
||
|
|
||
|
install -d "${pkgdir}"/usr/lib/mali-egl
|
||
|
install -d "${pkgdir}"/etc/ld.so.conf.d
|
||
|
cp -a c2_mali/fbdev/mali_libs/lib* "${pkgdir}"/usr/lib/mali-egl
|
||
|
cp "${srcdir}"/mali-c2.conf "${pkgdir}"/etc/ld.so.conf.d
|
||
|
}
|