1 # Maintainer: Mikael Eriksson <mikael_eriksson@miffe.org>
6 pkgdesc="Heroes 2 data files for fheroes2 (Requires Heroes 2 CD)"
9 url="http://en.wikipedia.org/wiki/Heroes_of_Might_and_Magic_II"
12 #local HEROES2_CD=${HEROES2_CD:=/media/cd}
14 if test -z "$HEROES2_CD"; then
15 error "Heroes 2 CD not found"
16 echo " You need to mount your Heroes 2 CD and"
17 echo " point HEROES2_CD to the mountpoint"
22 if ! test -e "$HEROES2_CD/HEROES2/DATA/HEROES2.AGG"; then
23 error "Unable to find the HEROES2/DATA/HEROES2.AGG file on the CD."
27 install -Dm644 "$HEROES2_CD/HEROES2/DATA/HEROES2.AGG" "$pkgdir/usr/share/fheroes2/data/HEROES2.AGG"
28 install -dm755 "$pkgdir/usr/share/fheroes2/maps"
29 install -m644 "$HEROES2_CD/HEROES2/MAPS/"* "$pkgdir/usr/share/fheroes2/maps/"
32 # vim:set ts=2 sw=2 et: