1
0
Fork 0
TheChymera-overlay/sys-fs/tmsu/tmsu-0.7.5.ebuild

55 lines
1.2 KiB
Bash
Raw Normal View History

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGO_PN="github.com/oniony/TMSU/"
EGO_VENDOR=( "github.com/mattn/go-sqlite3 v1.12.0" )
inherit golang-build golang-vcs-snapshot
DESCRIPTION="Files tagger and virtual tag-based filesystem"
HOMEPAGE="https://github.com/oniony/TMSU/wiki"
SRC_URI="
https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
${EGO_VENDOR_URI}
"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="sys-fs/fuse:0"
DEPEND="
dev-lang/go
dev-libs/go-fuse
test? ( ${RDEPEND} )
"
src_prepare() {
default
mkdir "${WORKDIR}/${P}/src/${EGO_PN}vendor/src"
mv "${WORKDIR}/${P}/src/${EGO_PN}vendor/github.com" "${WORKDIR}/${P}/src/${EGO_PN}vendor/src/"
}
src_compile() {
pushd "${WORKDIR}/${P}/src/${EGO_PN}"
GOPATH="${WORKDIR}/${P}/src/${EGO_PN}vendor/" emake
popd || die
}
src_install() {
dobin "${WORKDIR}/${P}/src/${EGO_PN}bin/tmsu"
dobin "${WORKDIR}/${P}/src/${EGO_PN}misc/bin/"*
doman "${WORKDIR}/${P}/src/${EGO_PN}misc/man/tmsu."*
insinto /usr/share/zsh/site-functions
doins "${WORKDIR}/${P}/src/${EGO_PN}misc/zsh/_tmsu"
}
src_test() {
cd "${WORKDIR}/${P}/tests" || die
./runall || die
}