swc-git: use correct DRM drivers depending on platform.

This commit is contained in:
Christian Neukirchen 2014-08-30 01:56:12 +02:00
parent 8f34198a1e
commit 3ce1ea7ef5
1 changed files with 14 additions and 4 deletions

View File

@ -5,28 +5,38 @@ _gitshort="${_githash:0:7}"
pkgname=swc-git
version=20140809
revision=1
revision=2
homepage="https://github.com/michaelforney/swc"
distfiles="https://github.com/michaelforney/swc/archive/${_githash}.tar.gz"
short_desc="A library for making a simple Wayland compositor"
maintainer="Enno Boland <eb@s01.de>"
hostmakedepends="pkg-config wayland-devel"
makedepends="pixman-devel fontconfig-devel libdrm-devel wayland-devel
wld-git-devel xcb-util-wm-devel libxkbcommon-devel libinput-devel>=0.5.0_1"
wld-git-devel xcb-util-wm-devel libxkbcommon-devel libinput-devel>=0.5.0_1
libevdev-devel"
checksum="f421ca2c3897e48e6f43a5e73b140441baf2246ee73c07b5e1e592762bad590a"
license="MIT"
wrksrc=swc-${_githash}
case "$XBPS_TARGET_MACHINE" in
arm*) _drm_drivers="nouveau";;
i686*|x86_64*) _drm_drivers="intel nouveau";;
esac
do_build() {
sed -i '/^ENABLE_STATIC /d' config.mk
sed -i '/^CC /d' config.mk
sed -i '/^CFLAGS /d' config.mk
make CC="$CC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" all example/wm
make CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS" \
LDFLAGS="$BUILD_LDFLAGS" cursor/convert_font
make ${makejobs} CC="$CC" CFLAGS="$CFLAGS" \
LDFLAGS="$LDFLAGS" DRM_DRIVERS="$_drm_drivers" \
all example/wm
}
do_install() {
make PREFIX=/usr DESTDIR=$DESTDIR install
make PREFIX=/usr DESTDIR=$DESTDIR DRM_DRIVERS="$_drm_drivers" install
vbin example/wm swc-wm
}