mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=hummstrumm
|
|
_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=(boost cipra eigen3 freetype2 ftgl intel-tbb libjpeg libpng libtheora libvorbis libxrandr mesa openal zlib)
|
|
makedepends=(cmake doxygen)
|
|
categories=('games')
|
|
source=(http://downloads.sourceforge.net/project/hummstrumm/Source/hummstrummengine-$pkgver.tar.gz)
|
|
md5sums=('45c4cc1b90f288207d8081f4cd1f3f4f')
|
|
|
|
build() {
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
CXXFLAGS="" \
|
|
cmake \
|
|
-G "Unix Makefiles" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|