blob: 1ef9daaf8b54254a37cd086b175648d5694b3023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Maintainer: André Silva <emulatorman@parabola.nu>
# Contributor: Márcio Silva <coadde@parabola.nu>
pkgbase=mesa
_pkgname=libcl
pkgname=lib32-$pkgbase-$_pkgname
_pkgflag=libre
pkgver=10.2.5
pkgrel=1
pkgdesc='Mesa 3-D OpenCL library (32-bit)'
url=http://${pkgbase}3d.sourceforge.net
license=(
custom
)
arch=(
x86_64
)
depends=(
lib32-libclc
lib32-$pkgbase
)
optdepends=(
'opencl-headers: headers necessary for OpenCL development'
)
makedepends=(
gcc-multilib
lib32-clang
dri2proto
dri3proto
glproto
imake
lib32-libxml2
presentproto
python2
lib32-libvdpau
)
provides=(
lib32-$_pkgname-$_pkgflag
lib32-$_pkgname
lib32-opencl-nvidia
lib32-opencl-nvidia-304xx
lib32-opencl-$pkgbase
)
conflicts=(
lib32-$_pkgname-$_pkgflag
lib32-$_pkgname
lib32-opencl-nvidia
lib32-opencl-nvidia-304xx
lib32-opencl-$pkgbase
)
replaces=(
lib32-$_pkgname-$_pkgflag
lib32-$_pkgname
lib32-opencl-nvidia
lib32-opencl-nvidia-304xx
lib32-opencl-$pkgbase
)
source=(
ftp://ftp.freedesktop.org/pub/$pkgbase/${pkgver%.0}/${pkgbase^}Lib-$pkgver.tar.bz2
)
sha512sums=(
9ff5b8f36290c24527ca0fc5db8a4d8d0fca5b0f1a8e4c977ec34052d0e4e887e45a0d97e8819790fad0ed10b56ea2caaa1c3a373595a6620b8d0a5ac40ed17d
)
build() {
cd $srcdir/${pkgbase^}-$pkgver
export CC="gcc -m32"
export CXX="g++ -m32"
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
export LLVM_CONFIG=/usr/bin/llvm-config32
autoreconf -vfi
./configure --prefix=/usr --libdir=/usr/lib32 --enable-32-bit\
--enable-opencl\
--enable-gallium-llvm\
--enable-r600-llvm-compiler\
--enable-dri3\
--with-clang-libdir=/usr/lib\
--enable-llvm-shared-libs\
--with-gallium-drivers=i915,nouveau,r300,r600,radeonsi,svga,swrast
make
}
package() {
cd $srcdir/${pkgbase^}-$pkgver
make -C src/gallium/targets/opencl DESTDIR=$pkgdir install
install -vdm755 $pkgdir/usr/share/licenses/$pkgname
install -vm644 docs/COPYING $pkgdir/usr/share/licenses/$pkgname
install -vm644 docs/license.html $pkgdir/usr/share/licenses/$pkgname/LICENSE
}
|