summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7db472b612d2a8935fce420d13df6d5382e3fa86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Jens Kuske <jenskuske@gmail.com>
# Contributor: smotocel69 <smotocel69@gmail.com>
pkgname=libvdpau-sunxi
pkgver=0.4
pkgrel=1
pkgdesc="VDPAU driver for Allwinner sunxi SoCs"
arch=('armv7h')
url="https://github.com/linux-sunxi/libvdpau-sunxi"
license=('LGPL')
depends=('libx11')
makedepends=('libvdpau')
source=("https://github.com/linux-sunxi/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('5139b007d9075654cfb47ced29f4e335302b7ede9ea9544524aa2232c357b08a')

build() {
	cd "$srcdir/$pkgname-$pkgver"
	make
}

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