mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
# Xorg video driver for Marvell Armada DRM and Freescale i.MX
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=xf86-video-armada
|
|
pkgver=436.34a7272
|
|
pkgrel=1
|
|
pkgdesc='X.org graphics driver for Marvell Armada DRM and Freescale i.MX'
|
|
arch=('armv7h')
|
|
url="http://git.arm.linux.org.uk/cgit/xf86-video-armada.git/"
|
|
license=('GPL2')
|
|
depends=('libdrm-armada')
|
|
makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=25.2' 'git' 'libdrm')
|
|
conflicts=('xorg-server<1.21.1' 'X-ABI-VIDEODRV_VERSION<25' 'X-ABI-VIDEODRV_VERSION>=26')
|
|
options=('!libtool')
|
|
backup=('etc/X11/xorg.conf.d/99-armada.conf')
|
|
source=("$pkgname::git://git.armlinux.org.uk/~rmk/xf86-video-armada.git#branch=unstable-devel"
|
|
'git+https://github.com/laanwj/etna_viv.git')
|
|
md5sums=('SKIP'
|
|
'SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
echo $(git rev-list --count makepkg).$(git rev-parse --short makepkg)
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
|
|
# Since pacman 5.0.2-2, hardened flags are now enabled in makepkg.conf
|
|
# With them, module fail to load with undefined symbol.
|
|
# See https://bugs.archlinux.org/task/55102 / https://bugs.archlinux.org/task/54845
|
|
export CFLAGS=${CFLAGS/-fno-plt}
|
|
export CXXFLAGS=${CXXFLAGS/-fno-plt}
|
|
export LDFLAGS=${LDFLAGS/,-z,now}
|
|
|
|
./autogen.sh --prefix=/usr --disable-vivante --disable-etnaviv --with-etnaviv-source="${srcdir}/etna_viv"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 conf/xorg-sample.conf "${pkgdir}/etc/X11/xorg.conf.d/99-armada.conf"
|
|
}
|