Difference between revisions of "U23 2005/avra ebuild"

From C4 Wiki
Jump to: navigation, search
(initial upload)
 
m (Subkategorie)
 
Line 40: Line 40:
 
fi
 
fi
 
}
 
}
[[Category:U23]]
+
[[Category:U23 2005]]

Latest revision as of 15:27, 28 May 2007

  1. Copyright 2000-2005 Gentoo Foundation
  2. Distributed under the terms of the GNU General Public License v2
  3. $Header: $

DESCRIPTION="Atmel AVR Assembler" HOMEPAGE="http://avra.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"

LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="doc"

DEPEND="" RDEPEND=""

src_unpack() { mkdir ${S} cd ${S} unpack ${A} }

src_compile() { cd ${S}/SOURCE make all }

src_install() { cd ${S}/SOURCE into /usr dobin avra

cd ${S} into /usr dodoc COPYING ChangeLog README

if use doc ; then docinto TEST dodoc TEST/* fi }