contrib/crawl-tiles/Pkgfile
2014-10-31 18:26:41 +01:00

28 lines
956 B
Plaintext

# Description: Dungeon Crawl Stone Soup is a singleplayer roguelike game - Tiles version
# URL: http://crawl.develz.org/
# Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
# Packager: Maximilian Dietrich, dxm at openmailbox dot org
# Depends on: sdl_image xorg-font-dejavu-ttf glu
name=crawl-tiles
version=0.15.2
release=1
source=(http://sourceforge.net/projects/crawl-ref/files/Stone%20Soup/$version/stone_soup-${version}.tar.xz)
build () {
cd stone_soup-$version/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|'
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}
}