xorg/mesa3d/Pkgfile

24 lines
941 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
2013-12-27 22:50:34 +01:00
# Depends on: libdrm, xorg-makedepend, xorg-glproto, xorg-xextproto, xorg-dri2proto, xorg-libx11, xorg-xf86vidmodeproto, xorg-libxext, xorg-libxxf86vm, xorg-libxt, xorg-libxdamage, xorg-libpciaccess, expat, talloc, libxml2-python, elfutils, xorg-presentproto, xorg-libxshmfence
2006-04-07 18:48:00 +02:00
name=mesa3d
2013-12-27 22:50:34 +01:00
version=10.0.0
2013-11-29 09:17:44 +01:00
release=1
2013-12-27 22:50:34 +01:00
source=(ftp://ftp.freedesktop.org/pub/mesa/10.0/MesaLib-$version.zip)
2006-04-07 18:48:00 +02:00
build() {
2013-12-27 22:50:34 +01:00
cd Mesa-$version
2006-04-07 18:48:00 +02:00
2013-12-27 22:50:34 +01:00
#sed -i 's/-Werror//' configure.ac
autoreconf --install --symlink
./configure --prefix=/usr \
--enable-gbm --enable-glx-tls --with-egl-platforms=drm \
--with-llvm-shared-libs --enable-gallium-gbm --enable-gallium-egl \
--enable-gles1 --enable-gles2 --enable-texture-float \
--with-gallium-drivers=r300,r600,svga,swrast,radeonsi,nouveau
make
make DESTDIR=$PKG install
2006-04-07 18:48:00 +02:00
}