58976c7e1e
PR: 193801 Submitted by: uffe The FS-UAE Launcher is an easy to use GUI frontend for FS-UAE, the free and open source Amiga Emulator based on WinUAE.
24 lines
573 B
Makefile
24 lines
573 B
Makefile
# Created by: Uffe Jakobsen <uffe@uffe.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fs-uae-launcher
|
|
PORTVERSION= 2.4.1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://fs-uae.net/fs-uae/stable/${PORTVERSION}/
|
|
|
|
MAINTAINER= uffe@uffe.org
|
|
COMMENT= GUI launcher for the FS-UAE Amiga emulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gettext gmake pathfix python shebangfix
|
|
|
|
INSTALLS_ICONS= yes
|
|
MAKE_ARGS= DESTDIR=${STAGEDIR} prefix=${PREFIX}
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} && ${PYTHON_CMD} setup.py build)
|
|
(cd ${WRKSRC} && ${PYTHON_CMD} \
|
|
setup.py install --root ${STAGEDIR} --prefix ${PREFIX})
|
|
|
|
.include <bsd.port.mk>
|