summaryrefslogtreecommitdiff
path: root/pcr/libegl-git/PKGBUILD
blob: aa48ab5a33bee9c744f3388ce883f8cdfd6474fa (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Maintainer: Márcio Silva <coadde@lavabit.com>

pkgname=libegl-git
true && pkgver=9.0.0.git20120906
true && pkgrel=1
_mesaver=9.0
arch=(
  i686
  x86_64
  mips64el
)
makedepends=(
  clang
  dri2proto
  git
  glproto-git
  imake
  libdrm-git
  libxdamage
  libxml2
  libxxf86vm
  python2
)
license=(
  MIT
  Khronos
  LGPL
)
depends=(
  khrplatform-devel-git
  libgbm-git
  libxext
  libxfixes
  libvg-git
)
conflicts=(
  ${pkgname%-git}
  ${pkgname%-git}-wayland
  ${pkgname%-git}-wayland-git
)
provides=(
  ${pkgname%-git}=$_mesaver
  ${pkgname%-git}-wayland-git=$_mesaver
)
pkgdesc='Mesa EGL libraries and headers'
url=http://mesa3d.sourceforge.net
#source=(
#  ftp://ftp.freedesktop.org/pub/mesa/$pkgver/MesaLib-$pkgver.tar.bz2
#)
#sha512sums=(
#  b7e8879e92252d0588d9eeeed904fd502ce1f48551b9a97f52aeb1318c79a80fab27504521107d61fbb5d986b2d778d89023a892baf9f1c5a5d2ee3746fefa57
#)

_gitroot=git://anongit.freedesktop.org/git/mesa/mesa
_gitname=mesa

build() {
  msg 'Connecting to git.freedesktop.org GIT server....'
  if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
  else
    git clone $_gitroot --depth 1
  fi
  msg 'GIT checkout done or server timeout'
  msg 'Starting make...'

  cd $srcdir

  # Cleanup and prepare the build dir
  [ -d build ] && rm -rf build
  cp -r $_gitname build
  cd build

  #cd $srcdir/Mesa-$pkgver

  autoreconf -vfi
  ./autogen.sh --prefix=/usr \
    --enable-egl \
    --enable-gallium-egl \
    --enable-gallium-gbm \
    --enable-gbm \
    --enable-openvg \
    --with-clang-libdir=/usr/lib \
  make
}

package() {
  #make -C $srcdir/build/src/egl                        DESTDIR=$pkgdir install
  #make -C $srcdir/build/src/gallium/targets/egl-static DESTDIR=$pkgdir install

  cd $srcdir/build
  install -m755 -d $pkgdir/usr/include/EGL
  install -m755 -d $pkgdir/usr/lib/egl
  install -m755 -d $pkgdir/usr/lib/pkgconfig
  install -m755 -d $pkgdir/usr/share/doc/${pkgname%-git}
  install -m755 -d $pkgdir/usr/share/licenses/${pkgname%-git}
  bin/minstall include/EGL/*          $pkgdir/usr/include/EGL
  bin/minstall src/egl/main/libEGL.la $pkgdir/usr/lib
  bin/minstall lib/libEGL.so*         $pkgdir/usr/lib
  bin/minstall lib/egl/egl_gallium.so $pkgdir/usr/lib/egl
  bin/minstall src/egl/main/egl.pc    $pkgdir/usr/lib/pkgconfig
  bin/minstall docs/egl.html          $pkgdir/usr/share/doc/${pkgname%-git}
  bin/minstall docs/COPYING           $pkgdir/usr/share/licenses/${pkgname%-git}
  bin/minstall docs/license.html      $pkgdir/usr/share/licenses/${pkgname%-git}
}