diff --git a/srcpkgs/wld-git/template b/srcpkgs/wld-git/template index ef3d833d043..c09ee25625e 100644 --- a/srcpkgs/wld-git/template +++ b/srcpkgs/wld-git/template @@ -5,7 +5,7 @@ _gitshort="${_githash:0:7}" pkgname=wld-git version=20140809 -revision=2 +revision=3 homepage="https://github.com/michaelforney/wld" distfiles="https://github.com/michaelforney/wld/archive/${_githash}.tar.gz" short_desc="Primitive drawing library targeted at Wayland" @@ -16,16 +16,22 @@ license="MIT" checksum=020ec074fdee06c436a354ff13c2ecdd206ae33f095d8f711c9984a0faabd5e2 wrksrc=wld-${_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" + make ${makejobs} CC="$CC" CFLAGS="$CFLAGS" \ + LDFLAGS="$LDFLAGS" DRM_DRIVERS="$_drm_drivers" } do_install() { - make PREFIX=/usr DESTDIR=$DESTDIR install + make PREFIX=/usr DESTDIR=$DESTDIR DRM_DRIVERS="$_drm_drivers" install } wld-git-devel_package() {