28 lines
417 B
Bash
28 lines
417 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3 go-module
|
|
|
|
DESCRIPTION="Scaffolding CLI for Astal+TypeScript"
|
|
HOMEPAGE="aylur.github.io/ags/"
|
|
EGIT_REPO_URI="https://github.com/Aylur/ags.git"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_unpack() {
|
|
git-r3_fetch
|
|
git-r3_checkout
|
|
}
|
|
|
|
src_compile() {
|
|
ego build
|
|
}
|