Makefile 966 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # $OpenBSD: Makefile,v 1.16 2017/05/31 08:08:15 espie Exp $
  2. COMMENT = downhill racing game
  3. BROKEN-alpha = cc1plus: error: unrecognized command line option '-std=c++11'
  4. BROKEN-hppa = cc1plus: error: unrecognized command line option '-std=c++11'
  5. V = 0.7.4
  6. DISTNAME = etr-$V
  7. PKGNAME = extremetuxracer-$V
  8. CATEGORIES = games
  9. HOMEPAGE = http://sourceforge.net/projects/extremetuxracer/
  10. MAINTAINER = Pascal Stumpf <pascal@stumpf.co>
  11. # GPLv2+
  12. PERMIT_PACKAGE_CDROM = Yes
  13. WANTLIB += GL GLU X11 c m pthread sfml-audio sfml-graphics sfml-system
  14. WANTLIB += sfml-window
  15. MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=extremetuxracer/}
  16. EXTRACT_SUFX = .tar.xz
  17. COMPILER = gcc
  18. BUILD_DEPENDS = archivers/unzip
  19. RUN_DEPENDS = devel/desktop-file-utils
  20. LIB_DEPENDS = multimedia/sfml
  21. CONFIGURE_STYLE = gnu
  22. CONFIGURE_ENV = LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib" \
  23. CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
  24. NO_TEST = Yes
  25. .include <bsd.port.mk>