contrib/dreamchess/Pkgfile

22 lines
522 B
Plaintext
Raw Normal View History

2018-11-29 16:21:07 +01:00
# Description: OpenGL chess game
# URL: https://github.com/dreamchess/dreamchess
2019-10-30 00:33:20 +01:00
# Maintainer: unmaintained
2018-11-29 16:21:07 +01:00
# Depends on: glew hicolor-icon-theme pugixml sdl2_image sdl2_mixer
name=dreamchess
version=0.3.0
release=1
source=(https://bitbucket.org/predivan/distfiles/downloads/$name-$version.tar.bz2)
build() {
cd $name-$version
mkdir build
cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release ../
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}