diff --git a/EBuild/examples/hello_world.ebuild b/EBuild/examples/hello_world.ebuild new file mode 100644 index 0000000..a510440 --- /dev/null +++ b/EBuild/examples/hello_world.ebuild @@ -0,0 +1,15 @@ +DESCRIPTION="Hello World" +HOMEPAGE="http://hello-world.org/" +SRC_URI="http://hello-world.org/" + +LICENSE="GPL" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_compile() { + einfo "Hello World" +}