# Maintainer: JKA Network # Before maintainer: Todor Imreorov for github pkgname=gdevelop-git pkgver=v5.0.0.beta106.r10.g35bf3861a pkgrel=1 pkgdesc="A full featured, open source game development software, allowing to create HTML5 and native games without knowing a programming language. All the game logic is made thanks to an intuitive and powerful event based system." arch=('x86_64') url=http://www.compilgames.net license=('GPL' 'MIT' 'zlib/png') groups=() provides=('gdevelop') install='gdevelop-git.install' makedepends=('rsync' 'cmake' 'git' 'curl') depends=('gcc' 'wxgtk' 'openal' 'p7zip' 'glew' 'libsndfile' 'systemd' 'libjpeg-turbo' 'desktop-file-utils' 'gtk-update-icon-cache') source=('git+https://github.com/4ian/GD.git') md5sums=('SKIP') pkgver() { cd "$srcdir"/GD git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "$srcdir"/GD cd Binaries rm -rf build mkdir build cd build cmake ../.. #Build the whole project make -j4 } package() { cd "$srcdir"/GD cd Binaries/build make install DESTDIR="$pkgdir" #Remove sfml installed libs rm -rf "$pkgdir"/usr/local }