wok view libdrm/receipt @ rev 19154

Up libdrm (2.4.68), xorg-xf86-video-nouveau (1.0.12)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Mon May 23 23:56:45 2016 +0300 (2016-05-23)
parents 9921bd529520
children 29f2e486ba73
line source
1 # SliTaz package receipt.
3 PACKAGE="libdrm"
4 VERSION="2.4.68"
5 CATEGORY="x-window"
6 SHORT_DESC="Freedesktop DRM Library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://dri.freedesktop.org/"
11 WGET_URL="http://dri.freedesktop.org/libdrm/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glibc-base udev linux-drm xorg-libpciaccess"
15 BUILD_DEPENDS="libpthread-stubs-dev gc-dev pkg-config udev-dev \
16 xorg-libpciaccess-dev"
17 #xorg-dev xorg-dev-proto
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --enable-intel \
24 --enable-radeon \
25 --enable-vmwgfx-experimental-api \
26 --enable-nouveau-experimental-api \
27 --enable-udev \
28 $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/libdrm.so* $fs/usr/lib
37 cp -a $install/usr/lib/libkms*.so* $fs/usr/lib
38 }