bfcb1bf63c
DUMB is a module audio renderer library. It reads module files and outputs audio that can be dumped to the actual audio playback library. This is a fork of the original dumb by Ben Davis.
26 lines
623 B
Makefile
26 lines
623 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/03/17 21:41:50 nia Exp $
|
|
|
|
DISTNAME= dumb-2.0.3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=kode54/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/kode54/dumb
|
|
COMMENT= Module/tracker based music format parser and player library
|
|
LICENSE= zlib
|
|
|
|
USE_CMAKE= yes
|
|
|
|
CMAKE_ARGS+= -DBUILD_SHARED_LIBS=ON
|
|
CMAKE_ARGS+= -DBUILD_ALLEGRO4=OFF
|
|
CMAKE_ARGS+= -DBUILD_EXAMPLES=OFF
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "amd64"
|
|
CMAKE_ARGS+= -DUSE_SSE=OFF
|
|
.endif
|
|
|
|
PKGCONFIG_OVERRIDE+= pkg-config.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|