15945f8122
to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
24 lines
497 B
Makefile
24 lines
497 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= drumpiler
|
|
PORTVERSION= 0.9.0
|
|
PORTREVISION= 6
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Drum machine compiler
|
|
|
|
USE_SDL= sdl
|
|
CFLAGS+= `${SDL_CONFIG} --cflags` -Wno-return-type
|
|
LIBS+= `${SDL_CONFIG} --libs`
|
|
PLIST_FILES= bin/drumpiler
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} -DUSESDL -o drumpiler drumpiler.c ${LIBS}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/drumpiler ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|