wok-next annotate mana/receipt @ rev 21033

Fix some homepages: follow HTTP redirections.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Nov 04 11:22:16 2018 +0200 (2018-11-04)
parents d5aab818505e
children 5669e8b3be70
rev   line source
pascal@11223 1 # SliTaz package receipt.
pascal@11223 2
pascal@11223 3 PACKAGE="mana"
pascal@11223 4 VERSION="1.0.0-beta"
pascal@11223 5 CATEGORY="games"
pascal@11223 6 SHORT_DESC="A fully free and open source MMORPG game with the looks of old-fashioned 2D RPG"
pascal@11223 7 MAINTAINER="devl547@gmail.com"
pascal@15584 8 LICENSE="GPL2"
al@21033 9 WEB_SITE="https://www.themanaworld.org/"
al@21020 10
pascal@11223 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11223 12 WGET_URL="http://manasource.org/files/$TARBALL"
pascal@15584 13
pascal@11223 14 BUILD_DEPENDS="physfs-dev libxml2-dev libsdl-mixer-dev libsdl-image-dev \
al@20454 15 libsdl-net-dev libsdl-ttf-dev libsdl-ttf curl-dev zlib-dev libpng16-dev guichan-dev \
pascal@11223 16 libsdl-gfx-dev enet"
pascal@11223 17
al@21020 18 compile_rules() {
al@21020 19 ./configure \
al@21020 20 --prefix=/usr \
al@21020 21 --without-opengl \
al@21020 22 $CONFIGURE_ARGS &&
pascal@11223 23 make &&
al@21020 24 make DESTDIR=$install install
pascal@11223 25 }
pascal@11223 26
al@21020 27 genpkg_rules() {
pascal@11223 28 mkdir -p $fs/usr/share
pascal@15584 29 cp -a $install/usr/bin $fs/usr
pascal@15584 30 cp -a $install/usr/share/applications $fs/usr/share/
pascal@15584 31 cp -a $install/usr/share/mana $fs/usr/share/
pascal@15584 32 cp -a $install/usr/share/pixmaps $fs/usr/share/
al@21020 33 DEPENDS="ttf-dejavu physfs libxml2 libsdl-mixer libsdl-image libsdl-net \
al@21020 34 libsdl-ttf curl zlib libpng16 guichan libsdl-gfx"
pascal@11223 35 }