aboutsummaryrefslogtreecommitdiffstats
path: root/audio/drumpiler/Makefile
blob: 55234639d23c6d1f88af83e4177e8c75a59258e6 (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
24
25
26
27
28
29
# ex:ts=8
# Ports collection makefile for:    drumpiler
# Date created:         Jan 15, 2004
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   drumpiler
PORTVERSION=    0.9.0
PORTREVISION=   5
CATEGORIES= audio
MASTER_SITES=   SF

MAINTAINER= ports@FreeBSD.org
COMMENT=    Drum machine compiler

USE_SDL=    sdl
CFLAGS+=    `${SDL_CONFIG} --cflags`
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 ${PREFIX}/bin

.include <bsd.port.mk>