xorg/libdrm/Pkgfile

25 lines
538 B
Plaintext
Raw Normal View History

2012-07-13 13:25:08 +02:00
# Description: Userspace interface to kernel DRM services
# URL: http://dri.freedesktop.org/
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: libpthread-stubs xorg-libpciaccess
name=libdrm
2014-05-02 23:30:10 +02:00
version=2.4.54
2014-04-12 18:58:39 +02:00
release=1
2013-11-23 08:02:58 +01:00
source=(http://dri.freedesktop.org/libdrm/libdrm-$version.tar.bz2
drm-header-path.patch)
2012-07-13 13:25:08 +02:00
build() {
2013-11-23 08:02:58 +01:00
cd $name-$version
patch -p 1 -i $SRC/drm-header-path.patch
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-manpages \
--disable-cairo-tests
2013-11-23 08:02:58 +01:00
make
make DESTDIR=$PKG install
2012-07-13 13:25:08 +02:00
}