blob: ff3d82af6e8df6930f3872b5e900e580a5029a4e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
PORTNAME= drumpiler
PORTVERSION= 0.9.0
PORTREVISION= 7
CATEGORIES= audio
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Drum machine compiler
WWW= http://drumpiler.sourceforge.net/
USES= sdl
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>
|