diff options
| author | Jakob L. Kreuze | 2019-09-28 13:13:51 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze | 2019-09-28 13:13:51 -0400 |
| commit | e35538d4a7d1eb400500bb6c58db2d9a9b2b4941 (patch) | |
| tree | 4ef7da2c30dc431f79d943b3b551b3d7d09f6352 /media-sound/goattracker/goattracker-2.75.ebuild | |
| parent | cc40c62caa90d12f86f14b82498c8bdcc7716b57 (diff) | |
Add media-sound/goattracker
Diffstat (limited to 'media-sound/goattracker/goattracker-2.75.ebuild')
| -rw-r--r-- | media-sound/goattracker/goattracker-2.75.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-sound/goattracker/goattracker-2.75.ebuild b/media-sound/goattracker/goattracker-2.75.ebuild new file mode 100644 index 0000000..837f2f8 --- /dev/null +++ b/media-sound/goattracker/goattracker-2.75.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Crossplatform music editor for creating Commodore 64 music" +HOMEPAGE="http://covertbitops.c64.org/" +SRC_URI="https://downloads.sourceforge.net/goattracker2/GoatTracker_2.75.zip" + +LICENSE="GPL-2" +SLOT="0" + +RDEPEND="media-libs/libsdl" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/goattrk2/src" + +src_prepare() { + sed -i '/strip \$@/d' makefile.common + make clean + default +} + +src_install() { + dobin ../linux/goattrk2 + dobin ../linux/gt2reloc + dobin ../linux/ins2snd2 + dobin ../linux/mod2sng + dobin ../linux/sngspli2 + + dodoc ../{authors,copying,goat_tracker_commands.pdf} + dodoc ../readme* +} |