mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
38 lines
788 B
Bash
38 lines
788 B
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CRATES=""
|
|
|
|
inherit cargo
|
|
|
|
DESCRIPTION="The Limbo interactive SQL shell"
|
|
HOMEPAGE="https://github.com/tursodatabase/limbo"
|
|
SRC_URI="
|
|
https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
|
|
"
|
|
DEPS_URI="https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz"
|
|
SRC_URI+=" ${DEPS_URI}"
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+="
|
|
Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
|
|
GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
|
|
"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
src_install() {
|
|
cargo_src_install --path cli
|
|
|
|
local DOCS=(
|
|
CHANGELOG.md
|
|
CONTRIBUTING.md
|
|
README.md
|
|
)
|
|
|
|
einstalldocs
|
|
}
|