summaryrefslogtreecommitdiff
path: root/libre-multilib/lib32-mesa-libcl/PKGBUILD
blob: c4918ccb414f4aff932b72dc343a2ff304315612 (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.4
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=(
  b74e9dd8e013b3f1f5bf4d51116e4ed2cb053a91135c57eed10cc87398169665b8e5f83076742da9ea4612f7340e9defd6d2ca2a49d456068cbe81ee3695d24d
)

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
}