mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
5730e29ede
- Update MASTER_SITES - Add LICENSE - Switch to PLIST_FILES PR: ports/184823 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
30 lines
784 B
Makefile
30 lines
784 B
Makefile
# Created by: Stefan Zehl <sec@42.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sidplay
|
|
PORTVERSION= 1.0.9
|
|
DISTVERSIONPREFIX= base-
|
|
CATEGORIES= audio emulators
|
|
MASTER_SITES= http://bsd-geek.de/FreeBSD/distfiles/ \
|
|
http://www.sourcefiles.org/Multimedia/Module_Players/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Commodore SID-chip emulator that plays SID music files
|
|
|
|
LICENSE= GPLv2 # (or later)
|
|
|
|
LIB_DEPENDS= libsidplay.so:${PORTSDIR}/audio/libsidplay
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-sidplay-includes=${LOCALBASE}/include \
|
|
--with-sidplay-library=${LOCALBASE}/lib
|
|
PLIST_FILES= bin/sid2wav bin/sidcon bin/sidplay
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sidplay \
|
|
${STAGEDIR}${PREFIX}/bin/sid2wav \
|
|
${STAGEDIR}${PREFIX}/bin/sidcon
|
|
|
|
.include <bsd.port.mk>
|