diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-01-15 16:16:15 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-01-15 16:16:15 +0800 |
commit | ec44be122f039b5f298d5bcf0346f8adf459540b (patch) | |
tree | ba881123e5952700a7d67e3b79077f10388e2af9 /audio | |
parent | 8df138606fb72e6bfb3c777b9642016dd5fa2709 (diff) | |
download | freebsd-ports-gnome-ec44be122f039b5f298d5bcf0346f8adf459540b.tar.gz freebsd-ports-gnome-ec44be122f039b5f298d5bcf0346f8adf459540b.tar.zst freebsd-ports-gnome-ec44be122f039b5f298d5bcf0346f8adf459540b.zip |
add drumpiler 0.9.0
Drum machine compiler
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/drumpiler/Makefile | 32 | ||||
-rw-r--r-- | audio/drumpiler/distinfo | 1 | ||||
-rw-r--r-- | audio/drumpiler/pkg-descr | 5 | ||||
-rw-r--r-- | audio/drumpiler/pkg-plist | 1 |
5 files changed, 40 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index 92dc0d77e4c8..e72f08d76e7a 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -61,6 +61,7 @@ SUBDIR += dekagen SUBDIR += denemo SUBDIR += discid + SUBDIR += drumpiler SUBDIR += easytag SUBDIR += eawpats SUBDIR += ecasound diff --git a/audio/drumpiler/Makefile b/audio/drumpiler/Makefile new file mode 100644 index 000000000000..ddc216f62236 --- /dev/null +++ b/audio/drumpiler/Makefile @@ -0,0 +1,32 @@ +# ex:ts=8 +# Ports collection makefile for: drumpiler +# Date created: Jan 15, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= drumpiler +PORTVERSION= 0.9.0 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Drum machine compiler + +USE_REINPLACE= yes +USE_SDL= yes +CFLAGS+= `${SDL_CONFIG} --cflags` +LIBS+= `${SDL_CONFIG} --libs` + +post-patch: + @${REINPLACE_CMD} -e "s|SDL.h|SDL11/SDL.h|" ${WRKSRC}/drumpiler.c + +do-build: + cd ${WRKSRC} && ${CC} ${CFLAGS} -DUSESDL -o drumpiler drumpiler.c ${LIBS} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/drumpiler ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/audio/drumpiler/distinfo b/audio/drumpiler/distinfo new file mode 100644 index 000000000000..3008c1155b54 --- /dev/null +++ b/audio/drumpiler/distinfo @@ -0,0 +1 @@ +MD5 (drumpiler-0.9.0.tar.gz) = c229d575cae646f530ef23d2cfe88366 diff --git a/audio/drumpiler/pkg-descr b/audio/drumpiler/pkg-descr new file mode 100644 index 000000000000..8f6b309279cc --- /dev/null +++ b/audio/drumpiler/pkg-descr @@ -0,0 +1,5 @@ +Drum machine compiler. You write the drum patterns in textfile with a list of +samples (*.WAV files). Feat.subroutine calls, loops, tempo changes, 8 volume +levels, 16bit-stereo-44khz mixing. + +WWW: http://drumpiler.sourceforge.net/ diff --git a/audio/drumpiler/pkg-plist b/audio/drumpiler/pkg-plist new file mode 100644 index 000000000000..742cd1b14217 --- /dev/null +++ b/audio/drumpiler/pkg-plist @@ -0,0 +1 @@ +bin/drumpiler |