diff options
author | John Marino <marino@FreeBSD.org> | 2014-07-05 19:15:41 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-07-05 19:15:41 +0000 |
commit | 3d1b7d9e5448aa037558521193225af85b71c455 (patch) | |
tree | dda573c015329ad03b6dd29c596e752f5b6e968f | |
parent | 47bd638a443e6057aba40cf758a2573b1128a483 (diff) |
Notes
-rw-r--r-- | graphics/timeless/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/graphics/timeless/Makefile b/graphics/timeless/Makefile index 99ef4874a435..ff9324d53341 100644 --- a/graphics/timeless/Makefile +++ b/graphics/timeless/Makefile @@ -12,9 +12,14 @@ MAINTAINER= ports@FreeBSD.org COMMENT= FreeBSD/SDL port of Tran's Timeless Demo with Sound USE_SDL= sdl mixer +LDFLAGS+= -lm -PLIST_FILES= bin/${PORTNAME} %%DATADIR%%/time.s3m +PLIST_FILES= bin/timeless %%DATADIR%%/time.s3m PLIST_DIRS= %%DATADIR%% -NO_STAGE= yes +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/timeless ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/time.s3m ${STAGEDIR}${DATADIR} + .include <bsd.port.mk> |