mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
912 B
Bash
37 lines
912 B
Bash
# ARMSoC Mali FrameBuffer driver for ODROID
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=xf86-video-armsoc-odroid
|
|
_commit=3bdf799bbb0d087cc1a206dd913ed1d10dec86a9
|
|
pkgver=237.3bdf799
|
|
pkgrel=1
|
|
arch=('armv7h')
|
|
url="https://github.com/mdrjr/xf86-video-armsoc/tree/r4p0"
|
|
license=('GPL2')
|
|
makedepends=('git' 'pkgconfig' 'xorg-server-devel' 'resourceproto' 'scrnsaverproto')
|
|
options=('!libtool')
|
|
conflicts=(xf86-video-armsoc)
|
|
provides=(xf86-video-armsoc)
|
|
source=("$pkgname::git+https://github.com/mdrjr/xf86-video-armsoc.git#commit=${_commit}")
|
|
md5sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
echo $(git rev-list --count makepkg).$(git rev-parse --short makepkg)
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
|
|
CFLAGS=`echo $CFLAGS | sed -e 's/vfpv3-d16/neon/'` && CXXFLAGS="$CFLAGS"
|
|
./autogen.sh --prefix=/usr --with-drmmode=exynos
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|