Makefile 706 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # $OpenBSD: Makefile,v 1.2 2017/04/10 11:45:22 sthen Exp $
  2. COMMENT = console-based OPL2 audio player
  3. DISTNAME = adplay-1.7
  4. CATEGORIES = audio
  5. HOMEPAGE = http://adplug.github.io/
  6. MAINTAINER = Frederic Cambus <fcambus@openbsd.org>
  7. # GPLv2+
  8. PERMIT_PACKAGE_CDROM = Yes
  9. WANTLIB += SDL adplug binio c iconv m pthread sndio ${LIBCXX} usbhid
  10. MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=adplug/}
  11. LIB_DEPENDS = audio/adplug \
  12. devel/libbinio \
  13. devel/sdl
  14. CXXFLAGS += -I${LOCALBASE}/include/libbinio
  15. CONFIGURE_STYLE = gnu
  16. CONFIGURE_ARGS = --disable-output-ao \
  17. --disable-output-esound \
  18. --disable-output-oss \
  19. --disable-output-alsa
  20. post-patch:
  21. rm ${WRKSRC}/src/getopt.h
  22. .include <bsd.port.mk>