X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=Jamfile;h=426b91db981ed67cdbdf35ab102d1643810bf739;hb=30f0f1d78e3f0bbbaf0b8d9d80fcbb579059941e;hp=49f762ae5062e9ad58a91be32b5c6a4b17c39f08;hpb=d65a31dff52f2b6f3d6f0d79e5ba4c9f15a319a4;p=supertux.git diff --git a/Jamfile b/Jamfile index 49f762ae5..426b91db9 100644 --- a/Jamfile +++ b/Jamfile @@ -1,7 +1,22 @@ +# warning for people who try jam install +actions InstallWarning +{ + 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 ; @@ -10,3 +25,9 @@ UseAutoconf ; # add some additional files to package Package INSTALL NEWS README COPYING AUTHORS ChangeLog ; +MakePot data/locale/messages.pot : $(TRANSLATABLE_SOURCES) ; +XGETTEXT_FLAGS on data/locale/messages.pot += -k_ -C ; + +InstallPixmap data/images/engine/icons/supertux.png data/images/engine/icons/supertux.xpm ; +InstallDesktop supertux.desktop ; +InstallDoc NEWS README COPYING AUTHORS ChangeLog ;