# Description: Dungeon Crawl Stone Soup, tiles version # URL: http://crawl.develz.org/ # Depends on: sdl_image xorg-font-dejavu-ttf glu # Maintainer: #teatime (irc.kyber.io), teatime at kyber dot io name=crawl-tiles version=0.20.0 release=1 source=(https://github.com/crawl/crawl/archive/$version.tar.gz) build () { cd "crawl-$version/crawl-ref/source" sed -i Makefile \ -e 's|bin_prefix := bin|bin_prefix := usr/bin|' \ -e 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' \ -e 's|MCHMOD := 2755|MCHMOD := 755|' echo "$version" > util/release_ver make DESTDIR=$PKG \ DATADIR=/usr/share/$name \ SAVEDIR='~/.crawl/' \ USE_UNICODE=y \ TILES=y \ install mv $PKG/usr/bin/crawl $PKG/usr/bin/crawl-tiles rm -rf $PKG/usr/share/$name/dat/descript/{cs,da,de,el,es,fi,fr,hu,it,ko,lt,lv,pl,pt,ru,zh} }