blob: 4aaacca809484b22cfa3f3d346213927eefb166f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.1 2015/09/11 12:35:19 wiz Exp $
# The upstream distfile (http://schismtracker.org/hg/archive/default.tar.bz2)
# is a repository snapshot and as such a moving target.
# Thus it's repackaged (adding a timestamp) and mirrored.
DISTNAME= schismtracker-20150911005204
CATEGORIES= audio
MASTER_SITES= http://penenen.de/
EXTRACT_SUFX= .tgz
MAINTAINER= fstd.lkml@gmail.com
HOMEPAGE= http://schismtracker.org/
COMMENT= Clone of the good old Impulse Tracker
LICENSE= gnu-gpl-v2
USE_TOOLS+= aclocal autoheader autoconf automake
MAKE_JOBS_SAFE= no
GNU_CONFIGURE= yes
pre-configure:
set -e; cd ${WRKSRC}; \
aclocal; autoheader; automake -a --foreign -i; autoconf
.include "../../devel/SDL/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|