# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit go-module EGO_SUM=( "github.com/go-ini/ini v1.62.0" "github.com/go-ini/ini v1.62.0/go.mod" "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1" "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod" "github.com/jtolds/gls v4.20.0+incompatible" "github.com/jtolds/gls v4.20.0+incompatible/go.mod" "github.com/mattn/go-colorable v0.1.8" "github.com/mattn/go-colorable v0.1.8/go.mod" "github.com/mattn/go-isatty v0.0.12" "github.com/mattn/go-isatty v0.0.12/go.mod" "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d" "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod" "github.com/smartystreets/goconvey v1.6.4" "github.com/smartystreets/goconvey v1.6.4/go.mod" "golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod" "golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod" "golang.org/x/net v0.0.0-20210226172049-e18ecbb05110" "golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod" "golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod" "golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod" "golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod" "golang.org/x/sys v0.0.0-20201119102817-f84b799fce68" "golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod" "golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod" "golang.org/x/text v0.3.0/go.mod" "golang.org/x/text v0.3.3/go.mod" "golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod" "golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod" "gopkg.in/ini.v1 v1.62.0" "gopkg.in/ini.v1 v1.62.0/go.mod" ) go-module_set_globals DESCRIPTION="Commandline tool to customize Spotify client." HOMEPAGE="https://github.com/khanhas/spicetify-cli" SRC_URI=" https://github.com/khanhas/spicetify-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz ${EGO_SUM_SRC_URI} " LICENSE="Apache-2.0 BSD GPL-3 MIT" SLOT="0" KEYWORDS="~amd64" INSTALLDIR="/opt/${PN}" PATCHES=( "${FILESDIR}/add_gentoo_install_dir.patch" ) src_compile() { go build || die } src_install() { insinto "${INSTALLDIR}" doins -r {CustomApps,Extensions,Themes,jsHelper,spicetify-cli} dobin "${FILESDIR}/spicetify" fperms +x "${INSTALLDIR}/spicetify-cli" } pkg_postinst() { elog "Spicetify requires a Spotify install that it can modify. Version 1.1.72 and 1.1.73" elog "are supported by this version of spicetify. To be able to modify system installed " elog "Spotify like media-sound/spotify then you have to allow spicetify to read and write" elog "to its install location like shown below." elog "# chmod a+wr /opt/spotify/spotify-client" elog "# chmod a+wr /opt/spotify/Apps -R" elog "" elog "Otherwise you can install spotify to a user modifiable location like as a flatpak:" elog "https://github.com/khanhas/spicetify-cli/wiki/Installation#spotify-installed-from-flatpak" }