X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=Jamfile;h=62ae5812bdb1997892a45056824ec379f6810b05;hb=ade819f400b71eef3b2bc4e4847fa040bc802bdb;hp=4227a37a805871ed197cbaf80008086ea4c75871;hpb=162277a72c939ea7261f4897ed371a7ce67c9ac5;p=supertux.git diff --git a/Jamfile b/Jamfile index 4227a37a8..62ae5812b 100644 --- a/Jamfile +++ b/Jamfile @@ -1,26 +1,22 @@ -SubDir TOP ; - -if $(XGETTEXT) != "" +# warning for people who try jam install +actions InstallWarning { - actions XGetText - { - $(XGETTEXT) $(XGETTEXT_FLAGS) --keyword='_:1' -o $(<) $(>) - } - rule MakePot - { - if $(>) { - XGetText $(<) : $(>) ; - Depends $(<) : $(>) ; - Depends all : $(<) ; - } - } -} else { - rule MakePot - { } + echo "****************************************************************" + echo "* WARNING: Installation is currently broken *" + echo "* Please start the game directly from source directory instead *" + echo "****************************************************************" + sleep 5 } +InstallWarning installwarning ; +Always installwarning ; +Depends install : installwarning ; + + +SubDir TOP ; + # Decend into subdirs -SubInclude TOP lib ; +SubInclude TOP tools miniswig ; SubInclude TOP src ; SubInclude TOP data ; @@ -31,3 +27,7 @@ Package INSTALL NEWS README COPYING AUTHORS ChangeLog ; MakePot data/locale/messages.pot : $(TRANSLATABLE_SOURCES) ; XGETTEXT_FLAGS on data/locale/messages.pot += --language=C++ ; + +InstallPixmap data/images/engine/icons/supertux.png data/images/engine/icons/supertux.xpm ; +InstallDesktop supertux.desktop ; +InstallDoc NEWS README COPYING AUTHORS ChangeLog ;