blob: 43622bdca8ea2690f8beb6c1eabf3d206bfb4529 (
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
|
# $Id: PKGBUILD 89930 2013-05-05 19:53:46Z lcarlier $
# Maintainer: Laurent Carlier <lordheavym@gmail.com>
# Contributor: Luca Bennati <lucak3 AT gmail DOT com>
# Contributor: Glaucous <glakke1 at gmail dot com>
pkgname=apitrace
pkgver=4.0
pkgrel=1
pkgdesc="Graphics API Tracing"
arch=('i686' 'x86_64')
url="https://github.com/apitrace/apitrace"
license=('custom')
makedepends=('cmake' 'mesa' 'libgl' 'python2' 'qtwebkit' 'qjson')
optdepends=('qtwebkit: GUI support' 'qjson: GUI support')
source=("https://github.com/apitrace/apitrace/archive/${pkgver}.zip")
md5sums=('5b2e212d91d2f184d8608c712eab69a0')
build() {
cd ${srcdir}/apitrace-*
cmake . -Bbuild -DCMAKE_INSTALL_PREFIX=/usr -DPYTHON_EXECUTABLE='/usr/bin/python2'
make -C build
}
package() {
depends=('python2' 'libgl')
cd ${srcdir}/apitrace-*
make -C build DESTDIR="${pkgdir}/" install
install -m755 -d "${pkgdir}/usr/share/licenses/apitrace"
install -m644 LICENSE "${pkgdir}/usr/share/licenses/apitrace/"
}
|