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