public
Description: Tool for creating Gentoo ebuilds based on gems
Homepage:
Clone URL: git://github.com/technicalpickles/g-gem.git
g-gem / ebuild.eruby
42c3bc1a » technicalpickles 2008-05-19 First working... something 1 # Copyright 1999-2008 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Header: /var/cvsroot/gentoo-x86/dev-util/git/git-1.5.5.1.ebuild,v 1.1 2008/04/24 00:20:53 robbat2 Exp $
4
5 inherit gems
6
7 DESCRIPTION="<%= spec.summary %>"
8 HOMEPAGE="<%= spec.homepage %>"
890be95b » technicalpickles 2008-05-19 Use a context object instea... 9 SRC_URI="<%= uri %>"
42c3bc1a » technicalpickles 2008-05-19 First working... something 10
11 LICENSE="MIT"
12 SLOT="0"
13 KEYWORDS="~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
14 IUSE=""
15 RESTRICT="test"
42c09c85 » technicalpickles 2008-05-19 Initial dependency support. 16
890be95b » technicalpickles 2008-05-19 Use a context object instea... 17 <%- unless spec.dependencies.empty? -%>
42c09c85 » technicalpickles 2008-05-19 Initial dependency support. 18 DEPEND="
890be95b » technicalpickles 2008-05-19 Use a context object instea... 19 <%- spec.dependencies.each do |dependency| -%>
20 <%= atom_of(dependency) %>
21 <%- end -%>
22 "
23 <%- end -%>