This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
HelloWorld/ebuild/helloWorld.ebuild
2021-11-26 07:28:00 +08:00

20 lines
438 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Hello, world"
HOMEPAGE="https://github.com/nguyenphuminh/HelloWorld"
SRC_URI="https://raw.githubusercontent.com/nguyenphuminh/HelloWorld/main/ebuild/helloWorld.ebuild"
LICENSE="MIT-with-advertising"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
echo "Hello, world"
}