Skip to content

Instantly share code, notes, and snippets.

Created September 19, 2013 21:22
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/6630013 to your computer and use it in GitHub Desktop.
Save anonymous/6630013 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
name=mesa3d
version=git
release=si
source=()
build() {
cd $PKGMK_SOURCE_DIR
if cd mesa; then
git pull --rebase git://anongit.freedesktop.org/mesa/mesa master
else
git clone git://anongit.freedesktop.org/mesa/mesa
cd mesa
fi
cp -r $PKGMK_SOURCE_DIR/mesa $SRC
cd $SRC/mesa
sed -i 's/-Werror//' configure.ac
#autoreconf --install --symlink
#--with-gallium-drivers=radeonsi,r600 --with-egl-platforms=x11,drm --enable-gbm --enable-glx-tls
./autogen.sh --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