diff options
author | 2008-01-15 18:49:24 +0000 | |
---|---|---|
committer | 2008-01-15 18:49:24 +0000 | |
commit | cbf744400708fe2e2056749f6703b8e3b7577ec5 (patch) | |
tree | 61dfe1a5f8b254524062718787d7c9a32fc01d51 /dev-lang/awib/awib-1.0_rc5_beta.ebuild | |
parent | sci-biology/mummer: Version bump (diff) | |
download | sunrise-cbf744400708fe2e2056749f6703b8e3b7577ec5.tar.gz sunrise-cbf744400708fe2e2056749f6703b8e3b7577ec5.tar.bz2 sunrise-cbf744400708fe2e2056749f6703b8e3b7577ec5.zip |
dev-lang/awib: Version bump. Note that the versioning (coming from upstream) is bizarre and misleading; this is a complete rewrite.
svn path=/sunrise/; revision=5430
Diffstat (limited to 'dev-lang/awib/awib-1.0_rc5_beta.ebuild')
-rw-r--r-- | dev-lang/awib/awib-1.0_rc5_beta.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-lang/awib/awib-1.0_rc5_beta.ebuild b/dev-lang/awib/awib-1.0_rc5_beta.ebuild new file mode 100644 index 000000000..b12a7c6cc --- /dev/null +++ b/dev-lang/awib/awib-1.0_rc5_beta.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2008 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 +} |