New package: a10disp.

This commit is contained in:
Juan RP 2014-01-27 19:03:55 +01:00
parent eb26dfe947
commit 02fccdb09a
1 changed files with 26 additions and 0 deletions

26
srcpkgs/a10disp/template Normal file
View File

@ -0,0 +1,26 @@
# Template file for 'a10disp'
pkgname=a10disp
version=20140127
revision=1
short_desc="Utility to change the display mode of Allwinner A10/13/20 devices"
maintainer="Juan RP <xtraeme@gmail.com>"
license="MIT"
homepage="https://github.com/hglm/a10disp"
only_for_archs="armv7l"
makedepends="fbset cubieboard2-kernel-headers"
depends="fbset"
do_fetch() {
git clone git://github.com/hglm/a10disp ${pkgname}-${version}
}
do_build() {
cp ${XBPS_CROSS_BASE}/usr/src/cubieboard2-kernel*/include/video/sunxi_disp_ioctl.h .
$CC -Wall a10disp.c -o a10disp
}
do_install() {
vinstall a10disp 755 usr/bin
vinstall README 644 usr/share/doc/a10disp
}