hummstrumm 0.7.0

This commit is contained in:
Adrián Chaves Fernández (Gallaecio) 2016-05-23 21:27:01 +02:00
parent 1a28eb3b26
commit e8aaaf023e
2 changed files with 33 additions and 7 deletions

26
cipra/PKGBUILD Normal file
View File

@ -0,0 +1,26 @@
pkgname=cipra
pkgver=1.2.1
pkgrel=1
pkgdesc="C++11 unit testing framework based on Perl's Test::More module"
arch=('x86_64')
url="http://cipra.sourceforge.net/"
license=('BSD')
makedepends=(cmake doxygen)
categories=('devel')
source=(http://downloads.sourceforge.net/project/cipra/cipra-$pkgver.tar.gz)
md5sums=('014accaed20f5aae1db0b4ec6fede450')
build() {
cd $srcdir/$pkgname-$pkgver
mkdir build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
..
make
}
package() {
cd $srcdir/$pkgname-$pkgver/build
make DESTDIR=$pkgdir install
}

View File

@ -4,22 +4,22 @@
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=hummstrumm
pkgver=0.6.1
_pkgver=0.6
_pkgname=hummstrummengine
pkgver=0.7.0
pkgrel=1
pkgdesc="A 3D adventure game in which two players set out to stop the evil Dr. Geoff from taking over the world."
arch=('i686' 'x86_64')
url="http://hummstrumm.blogspot.com/"
screenshot="https://lh6.googleusercontent.com/-oa0ajQj51WY/S6Dx2iKb7nI/AAAAAAAAAXc/nsL2eJw2r4k/d/splitscreen-ui-concept.png"
license=('GPL3' 'CCPL-by-sa')
depends=(freetype2 ftgl libjpeg libpng libtheora libvorbis libxrandr mesa openal zlib)
depends=(boost cipra eigen3 freetype2 ftgl intel-tbb libjpeg libpng libtheora libvorbis libxrandr mesa openal zlib)
makedepends=(cmake doxygen)
categories=('games')
source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz)
md5sums=('e6d548885bea4457d478664ae7bf523e')
source=(http://downloads.sourceforge.net/project/hummstrumm/Source/hummstrummengine-$pkgver.tar.gz)
md5sums=('45c4cc1b90f288207d8081f4cd1f3f4f')
build() {
cd $srcdir/$pkgname-$_pkgver
cd $srcdir/$_pkgname-$pkgver
CXXFLAGS="" \
cmake \
-G "Unix Makefiles" \
@ -27,6 +27,6 @@ build() {
}
package() {
cd $srcdir/$pkgname-$_pkgver
cd $srcdir/$_pkgname-$pkgver
make DESTDIR=$pkgdir install
}