summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ca940a9876919353134ec7ccfd84952865ce5685 (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
# Maintainer: Jose Riha <jose1711 gmail com>
# Contributor: 404
# Contributor carstene1ns <arch carsten-teibes de>
# Contributor: Heine Laursen <zann at gmail dot com>
# Contributor: Christoph Zeiler <rabyteNOSPAM_at_gmx.dot.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Adam Griffiths <adam_griffithsAATTdart.net.au>

pkgname=ode-011
pkgver=0.11.1
pkgrel=1
pkgdesc="An open source, high performance library for simulating rigid body dynamics"
arch=('i686' 'x86_64')
url="http://www.ode.org"
license=('LGPL' 'BSD')
options=('!libtool')
provides=('ode')
conflicts=('ode')
source=("http://downloads.sourceforge.net/opende/ode-$pkgver.tar.bz2")
md5sums=('712579afabc2a15aa56e399f76171477')

build() {
  cd ode-$pkgver

  LIBS="$LIBS -lX11" ./configure --prefix=/usr --enable-shared \
    --enable-release --disable-asserts --with-trimesh=opcode

  make
}

package() {
  cd ode-$pkgver

  make DESTDIR="$pkgdir/" install

  install -Dm644 LICENSE.TXT "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}