summaryrefslogtreecommitdiff
blob: 925af7d41632f8b86869f5b7b9e5ceea31ba9c23 (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
27
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit  toolchain-funcs

DESCRIPTION="Optimizing brainfuck compiler written in brainfuck for Linux on i386."
HOMEPAGE="http://www.nada.kth.se/~matslina/awib/"
SRC_URI="http://www.helch.ch/gentoo/distfiles/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=""
RDEPEND=""

src_compile() {
	$(tc-getCC) ${CFLAGS} -o awib awib.c || die "awib compile failed!"
	$(tc-getCC) ${CFLAGS} -o wib wib.c || die "wib compile failed!"
}

src_install() {
	dobin awib wib
	dodoc awib.b wib.b
}