Skip to content

Instantly share code, notes, and snippets.

Created December 1, 2013 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7737996 to your computer and use it in GitHub Desktop.
Save anonymous/7737996 to your computer and use it in GitHub Desktop.
Pkgfile
# Description: Mesa 3D Graphics Library
# URL: http://www.mesa3d.org
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# 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, xorg-presentproto, xorg-libxshmfence
name=mesa3d
version=10.0.0
release=1
source=(ftp://ftp.freedesktop.org/pub/mesa/10.0/MesaLib-$version.zip)
build() {
cd Mesa-$version
#sed -i 's/-Werror//' configure.ac
autoreconf --install --symlink
#./autogen.sh --prefix=/usr \
./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
make
make DESTDIR=$PKG install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment