summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 24965ddeebcbb1e09ea711261d95ed891ac2a1ef (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
# Maintainer: Guilhem Saurel <saurel@laas.fr>

_pkgname=gepetto-viewer-corba
_pkgver=5.5.1
pkgname=${_pkgname}-git
pkgver=5.5.1.r648.a4cc0c8
pkgrel=1
pkgdesc="Graphical Interface for Pinocchio and HPP."
arch=('i686' 'x86_64')
url="https://github.com/gepetto/$_pkgname"
license=('BSD')
depends=('gepetto-viewer-git' 'python-omniorbpy')
makedepends=('cmake' 'boost' 'git')
conflicts=($_pkgname)
provides=($_pkgname)
source=("$_pkgname"::"git://github.com/gepetto/$_pkgname.git")
sha256sums=('SKIP')

pkgver() {
    cd "$_pkgname"
    echo "$_pkgver.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

prepare() {
    cd "$_pkgname"
    git submodule update --init
    mkdir build
}

build() {
    cd "$_pkgname/build"
    cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib ..
    make
}

check() {
    cd "$_pkgname/build"
    make test
}

package() {
    cd "$_pkgname/build"
    make DESTDIR="$pkgdir/" install
    install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}