xorg/mesa3d/Pkgfile

35 lines
947 B
Plaintext
Raw Normal View History

2006-04-07 18:48:00 +02:00
# Description: Mesa 3D Graphics Library
# URL: http://www.mesa3d.org
2012-07-13 20:14:36 +02:00
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: elfutils expat libdrm libvdpau libxml2-python llvm talloc xorg-dri3proto xorg-glproto xorg-libxdamage xorg-libxshmfence xorg-libxt xorg-libxvmc xorg-libxxf86vm xorg-makedepend xorg-presentproto
2006-04-07 18:48:00 +02:00
name=mesa3d
2015-04-25 15:28:56 +02:00
version=10.5.4
2015-03-07 10:47:45 +01:00
release=1
source=(ftp://ftp.freedesktop.org/pub/mesa/$version/mesa-$version.tar.xz)
2006-04-07 18:48:00 +02:00
build() {
cd mesa-$version
autoreconf --force --install --symlink
./configure \
--prefix=/usr \
2015-01-16 20:36:11 +01:00
--sysconfdir=/etc \
--enable-gallium-llvm \
--enable-gbm \
--enable-gles1 \
--enable-gles2 \
--enable-glx-tls \
--enable-osmesa \
--enable-texture-float \
--enable-xa \
--enable-vdpau \
--enable-llvm-shared-libs \
2015-01-17 15:35:59 +01:00
--disable-dependency-tracking \
--with-egl-platforms=drm \
2013-12-27 22:50:34 +01:00
--with-gallium-drivers=r300,r600,svga,swrast,radeonsi,nouveau
make
make DESTDIR=$PKG install
2006-04-07 18:48:00 +02:00
}