# Maintainer: Massimiliano Torromeo # Contributor: Astor Castelo # Contributor: Fabio Volpe pkgname=chipmunk pkgver=7.0.1 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 } sha256sums=('fe54b464777d89882a9f9d3d6deb17189af8bc5d63833b25bb1a7d16c3e69260')