# Maintainer: Astor Castelo # Contributor: Fabio Volpe # Contributor: Massimiliano Torromeo pkgname=chipmunk pkgver=6.0.3 pkgrel=1 pkgdesc="A high-performance 2D rigid body physics library" arch=('i686' 'x86_64') url="http://chipmunk-physics.net/" license=('MIT') depends=('glibc') makedepends=('cmake') source=(http://files.slembcke.net/chipmunk/release/Chipmunk-${pkgver%%.*}.x/Chipmunk-$pkgver.tgz) build() { cd "$srcdir/Chipmunk-$pkgver" sed -i '/MAKE_PROPERTIES_REF(cpShape, IsSensor);/d' include/chipmunk/chipmunk_ffi.h cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_DEMOS=OFF -DCMAKE_C_FLAGS="-DCHIPMUNK_FFI" . make clean make } package() { cd "$srcdir/Chipmunk-$pkgver" install -Dm0644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" make DESTDIR="$pkgdir" install } md5sums=('c5fb7d1ea529a0180e32456980f8f4a7')