982eb4912d
Gtk+ 2 port of the Glk interface for text adventure interpreters, with support for sound and graphics. sound doesn't work yet
25 lines
732 B
Makefile
25 lines
732 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2003/10/20 13:17:29 dillo Exp $
|
|
#
|
|
|
|
DISTNAME= gtkglk-0.2
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.ifarchive.org/if-archive/programming/glk/implementations/
|
|
|
|
MAINTAINER= dillo@NetBSD.org
|
|
HOMEPAGE= http://www.ifarchive.org/if-archive/programming/glk/implementations/
|
|
COMMENT= Gtk+ 2 port of Glk interface for text adventures
|
|
|
|
USE_BUILDLINK2= yes
|
|
USE_GNU_TOOLS+= make
|
|
ALL_TARGET= default
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/include/gtkglk
|
|
for f in Make.gtkglk gi_blorb.h gi_dispa.h glk.h glkstart.h; \
|
|
do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/include/gtkglk; \
|
|
done
|
|
|
|
.include "../../audio/SDL_mixer/buildlink2.mk"
|
|
.include "../../x11/gtk2/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|