28 lines
658 B
Bash
28 lines
658 B
Bash
# Template file for 'a10disp'
|
|
pkgname=a10disp
|
|
version=20150416
|
|
revision=1
|
|
short_desc="Utility to change the display mode of Allwinner A10/13/20 devices"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="MIT"
|
|
homepage="https://github.com/hglm/a10disp"
|
|
|
|
only_for_archs="armv7l"
|
|
hostmakedepends="git"
|
|
makedepends="fbset sun7i-kernel-headers"
|
|
depends="fbset"
|
|
|
|
do_fetch() {
|
|
git clone git://github.com/hglm/a10disp ${wrksrc}
|
|
cd ${wrksrc}
|
|
git checkout 7525cff0366c6feb
|
|
}
|
|
do_build() {
|
|
cp ${XBPS_CROSS_BASE}/usr/src/sun7i-kernel*/include/video/sunxi_disp_ioctl.h .
|
|
$CC $CFLAGS $LDFLAGS -Wall a10disp.c -o a10disp
|
|
}
|
|
do_install() {
|
|
vbin a10disp
|
|
vdoc README
|
|
}
|