wok-next annotate wesnoth/receipt @ rev 12948
libglade: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed May 30 23:13:24 2012 +0200 (2012-05-30) |
parents | 0867e290621a |
children | 9433ff922ea5 |
rev | line source |
---|---|
pascal@3049 | 1 # SliTaz package receipt. |
pascal@3049 | 2 |
pascal@3049 | 3 PACKAGE="wesnoth" |
slaxemulator@6480 | 4 VERSION="1.8.5" |
pascal@3049 | 5 CATEGORY="games" |
pascal@3049 | 6 SHORT_DESC="Turn based strategy game" |
pascal@3049 | 7 MAINTAINER="mimas@slitaz.org" |
pascal@5007 | 8 DEPENDS="libsdl libsdl-mixer libsdl-ttf libsdl-net libsdl-image zlib pango \ |
pascal@5007 | 9 cairo fontconfig libboost-regex libboost-iostreams libpng fribidi gcc-lib-base \ |
pascal@5007 | 10 xcb-util" |
erjo@5938 | 11 BUILD_DEPENDS="cairo-dev pango-dev libboost-regex-dev libboost-iostreams-dev libsdl-dev libsdl-mixer-dev libsdl-ttf-dev \ |
erjo@5938 | 12 libsdl-ttf libsdl-image-dev libsdl-net-dev libpng-dev freetype-dev fontconfig-dev findutils \ |
pascal@10618 | 13 lua-dev libboost-serialization-dev autoconf automake fribidi-dev" |
pascal@3049 | 14 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@3049 | 15 WEB_SITE="http://www.wesnoth.org/" |
pascal@3049 | 16 WGET_URL="$SF_MIRROR/wesnoth/$TARBALL" |
jozee@4976 | 17 TAGS="strategy" |
pascal@3049 | 18 |
pascal@3049 | 19 # Rules to configure and make the package. |
pascal@3049 | 20 compile_rules() |
pascal@3049 | 21 { |
pascal@3049 | 22 cd $src |
gokhlayeh@8502 | 23 ./autogen.sh || return 1 |
pascal@4255 | 24 ./configure --prefix=/usr $CONFIGURE_ARGS |
pascal@4255 | 25 sed -i -e 's/CFLAGS = -O2/CFLAGS = -fno-strict-aliasing -O2/' \ |
pascal@4255 | 26 -e 's/CXXFLAGS = -O2/CXXFLAGS = -fno-strict-aliasing -O2/' \ |
pascal@5162 | 27 -e 's| -o -wholename "data/test/\*"||' \ |
pascal@4255 | 28 Makefile src/Makefile |
gokhlayeh@11574 | 29 make $MAKEFLAGS && make DESTDIR=$PWD/_pkg install |
pascal@3049 | 30 } |
pascal@3049 | 31 |
pascal@3049 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3049 | 33 genpkg_rules() |
pascal@3049 | 34 { |
pascal@3049 | 35 # programs |
pascal@3049 | 36 mkdir -p $fs/usr/bin |
pascal@3049 | 37 cp $_pkg/usr/bin/wesnoth $fs/usr/bin/ |
pascal@3049 | 38 |
pascal@3049 | 39 # data |
pascal@3049 | 40 mkdir -p $fs/usr/share/wesnoth/ |
pascal@3049 | 41 cp -a $_pkg/usr/share/wesnoth/data $fs/usr/share/wesnoth/ |
pascal@3049 | 42 cp -a $_pkg/usr/share/wesnoth/fonts $fs/usr/share/wesnoth/ |
pascal@3049 | 43 cp -a $_pkg/usr/share/wesnoth/icons $fs/usr/share/wesnoth/ |
pascal@3049 | 44 cp -a $_pkg/usr/share/wesnoth/images $fs/usr/share/wesnoth/ |
pascal@3049 | 45 cp -a $_pkg/usr/share/wesnoth/sounds $fs/usr/share/wesnoth/ |
pascal@3049 | 46 |
pascal@3049 | 47 mkdir $fs/usr/share/wesnoth/translations |
pascal@3049 | 48 if [ ! "$LOCALE" = "" ]; then |
pascal@3049 | 49 for i in $LOCALE |
pascal@3049 | 50 do |
pascal@3049 | 51 cp -a $_pkg/usr/share/wesnoth/translations/$i \ |
pascal@3049 | 52 $fs/usr/share/wesnoth/translations |
pascal@3049 | 53 done |
pascal@3049 | 54 else |
pascal@3049 | 55 cp -a $_pkg/usr/share/wesnoth/translations \ |
pascal@3049 | 56 $fs/usr/share/wesnoth/ |
pascal@3049 | 57 fi |
pascal@3049 | 58 |
pascal@3049 | 59 # Remove music |
pascal@3050 | 60 rm $fs/usr/share/wesnoth/data/core/music/*.ogg 2> /dev/null |
pascal@3049 | 61 |
pascal@3049 | 62 # finalize |
pascal@3049 | 63 cp -a $_pkg/usr/share/applications $fs/usr/share |
pascal@3049 | 64 cp -a $_pkg/usr/share/icons $fs/usr/share |
pascal@3049 | 65 |
pascal@3049 | 66 } |
pascal@3049 | 67 |