mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
16 lines
468 B
Bash
16 lines
468 B
Bash
buildarch=4
|
|
pkgname=('odroid-x-hdmi')
|
|
pkgver=20121124
|
|
pkgrel=1
|
|
pkgdesc="xorg.conf for HDMI output on the HardKernel ODROID-X"
|
|
arch=('armv7h')
|
|
url="http://www.archlinuxarm.org/platforms/armv7/odroid-x"
|
|
license=('GPL')
|
|
depends=('xf86-video-fbdev' 'xorg-server' 'xorg-xinit' 'xorg-utils' 'xorg-server-utils')
|
|
source=(xorg.conf)
|
|
md5sums=('a7b2918356666a3804ada8e9ef5c460d')
|
|
|
|
build() {
|
|
mkdir -p "$pkgdir/etc/X11/"
|
|
install -m644 "$srcdir/xorg.conf" "$pkgdir/etc/X11/"
|
|
}
|