desktop/hummstrumm/PKGBUILD

33 lines
1.0 KiB
Bash
Raw Normal View History

2012-02-25 07:49:54 +08:00
#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=hummstrumm
2016-05-24 03:27:01 +08:00
_pkgname=hummstrummengine
pkgver=0.7.0
2012-02-25 07:49:54 +08:00
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')
2016-05-24 03:27:01 +08:00
depends=(boost cipra eigen3 freetype2 ftgl intel-tbb libjpeg libpng libtheora libvorbis libxrandr mesa openal zlib)
2012-02-25 07:49:54 +08:00
makedepends=(cmake doxygen)
2012-03-07 19:00:46 +08:00
categories=('games')
2016-05-24 03:27:01 +08:00
source=(http://downloads.sourceforge.net/project/hummstrumm/Source/hummstrummengine-$pkgver.tar.gz)
md5sums=('45c4cc1b90f288207d8081f4cd1f3f4f')
2012-02-25 07:49:54 +08:00
build() {
2016-05-24 03:27:01 +08:00
cd $srcdir/$_pkgname-$pkgver
2012-05-18 19:21:20 +08:00
CXXFLAGS="" \
2012-02-25 07:49:54 +08:00
cmake \
2012-05-18 19:21:20 +08:00
-G "Unix Makefiles" \
-DCMAKE_INSTALL_PREFIX=/usr
2012-02-25 07:49:54 +08:00
}
package() {
2016-05-24 03:27:01 +08:00
cd $srcdir/$_pkgname-$pkgver
make DESTDIR=$pkgdir install
2012-02-25 07:49:54 +08:00
}