PKGBUILDs/alarm/xf86-video-armsoc-git/PKGBUILD
Daniel Wallace edacac7bdd replace xf86-video-armsoc with -git built from the same tag
this makes it so we don't have to use tarballs and can just pull the
correct commit
2013-04-08 13:54:51 -04:00

53 lines
1.4 KiB
Bash

# Maintainer: Erik Andersson <erik.h.andersson@gmail.com>
# ArmSoc (OMAP + Mali) FrameBuffer driver for Xorg from the Chromium OS git.
# Official upstream is at
# http://git.linaro.org/gitweb?p=arm/xorg/driver/xf86-video-armsoc.git;a=summary
buildarch=4
pkgname=xf86-video-armsoc-git
pkgver=145.47a3271
pkgver() {
cd "$srcdir/xf86-video-armsoc"
echo $(git rev-list --count makepkg).$(git rev-parse --short makepkg)
}
epoch=1
pkgrel=1
arch=('armv7h')
url="http://git.chromium.org/gitweb/?p=chromiumos/third_party/xf86-video-armsoc.git;a=summary"
license=('GPL2')
makedepends=('git' 'pkgconfig' 'xorg-server-devel' 'resourceproto' 'scrnsaverproto')
options=('!libtool')
conflicts=(xf86-video-armsoc)
replaces=(xf86-video-armsoc)
provides=(xf86-video-armsoc)
source=('compat_post_X_1.13.patch'
"git+http://git.chromium.org/git/chromiumos/third_party/xf86-video-armsoc.git#commit=47a3271")
md5sums=('12ccb37f9bdfe2e920d95a2cca832295'
'SKIP')
_gitname="xf86-video-armsoc"
prepare() {
cd "$srcdir/$_gitname"
msg "Patching source..."
# X 1.13 compatibility from the Linaro upstream
git apply ${srcdir}/compat_post_X_1.13.patch
}
build() {
cd "$_gitname"
msg "Starting build..."
./autogen.sh --prefix=/usr
make
}
package() {
pkgdesc="armsoc framebuffer driver for X from chromium os git"
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}" install
}