blob: 8fdc1ff2c6c428256fd94e2a08460a91e6a61299 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="cbmbasic - Commodore BASIC V2 as a scripting language"
HOMEPAGE="http://www.pagetable.com/?p=48"
SRC_URI="http://www.weihenstephan.org/~michaste/pagetable/recompiler/cbmbasic.zip"
LICENSE="GPL-COMPATIBLE"
SLOT="0"
KEYWORDS="amd64 x86 sparc"
IUSE=""
DEPEND=""
RDEPEND=""
src_compile() {
emake
}
src_install() {
dobin cbmbasic
dodoc README.txt
}
|