summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3efdd77ada5d54d1a856241484be8b032806e072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>

buildarch=16

pkgname=qt5-qpa-rpi-plugin
pkgver=5.4.0
pkgrel=1
pkgdesc="Qt5 eglfs plugin built against Broadcom's GL libs."
url="http://qt.io"
arch=('armv6h' 'armv7h')
license=('GPL3' 'LGPL' 'FDL' 'custom')
depends=('qt5-base' 'mtdev')
conflicts=('qt5-qpa-rpi-plugin-git')
source=("https://github.com/greenisland/${pkgname}/archive/v${pkgver}.tar.gz")
md5sums=('b8a58bc5c438c11d105ece4b297d4cfc')

build() {
	cd ${pkgname}-${pkgver}/eglfs_rpi
	qmake
	make
}

package() {
	cd ${pkgname}-${pkgver}/eglfs_rpi
	make INSTALL_ROOT="${pkgdir}" install
}