[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / ports / games / violetland

Annotation of ports/games/violetland/Makefile, Revision 1.10

1.1       yason       1: # $OpenBSD$
                      2:
1.6       yason       3: COMMENT =              top view shooting game
1.1       yason       4:
1.9       kirby       5: GH_ACCOUNT =           ooxi
                      6: GH_PROJECT =           violetland
                      7: GH_TAGNAME =           0.5
1.1       yason       8:
1.6       yason       9: CATEGORIES =           games x11
1.1       yason      10:
1.9       kirby      11: HOMEPAGE =             https://violetland.github.io/
1.1       yason      12:
1.9       kirby      13: MAINTAINER =           Kirill Bychkov <kirby@openbsd.org>
1.1       yason      14:
                     15: # GPLv3 / Creative Commons 3.0 BY-SA
                     16: PERMIT_PACKAGE_CDROM = Yes
                     17:
1.9       kirby      18: WANTLIB += GL GLU SDL SDL_image SDL_mixer SDL_ttf
1.4       yason      19: WANTLIB += boost_filesystem-mt boost_system-mt c intl m pthread stdc++
1.1       yason      20:
1.10    ! kirby      21: MODULES =              devel/cmake
1.4       yason      22: LIB_DEPENDS =          devel/boost \
1.3       yason      23:                        devel/sdl-image \
1.1       yason      24:                        devel/sdl-mixer \
1.3       yason      25:                        devel/sdl-ttf
1.5       yason      26: RUN_DEPENDS =          devel/desktop-file-utils
1.1       yason      27:
1.9       kirby      28: NO_TEST =              Yes
1.5       yason      29:
                     30: post-install:
                     31:        ${INSTALL_DATA_DIR} ${PREFIX}/share/applications/
                     32:        ${INSTALL_DATA} ${WRKSRC}/violetland.desktop ${PREFIX}/share/applications
1.9       kirby      33:        ${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps/
                     34:        ${INSTALL_DATA} ${WRKSRC}/icon-light.png ${PREFIX}/share/pixmaps/violetland.png
1.1       yason      35:
                     36: .include <bsd.port.mk>

CVSweb