Files
guru/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild
Maciej Barć 66c23f17e3 www-apps/code-server-bin: rename the patch file
Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
2020-08-31 16:11:04 +02:00

83 lines
1.8 KiB
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PN="${PN/-bin/}"
MY_PV="${MY_PN}-${PV}"
BASE_URI="https://github.com/cdr/${MY_PN}/releases/download/${PV}/${MY_PV}-linux"
inherit systemd
DESCRIPTION="VS Code in the browser (binary version with unbundled node and ripgrep)"
HOMEPAGE="https://coder.com/"
SRC_URI="
amd64? ( ${BASE_URI}-amd64.tar.gz )
arm64? ( ${BASE_URI}-arm64.tar.gz )
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"
IUSE=""
# In case we ever make a non-"-binary" pkg
DEPEND="
!www-apps/code-server
"
RDEPEND="
${DEPEND}
>=net-libs/nodejs-12.16.1[ssl]
sys-apps/ripgrep
"
S="${WORKDIR}/${MY_PV}-linux-${ARCH}"
PATCHES=(
"${FILESDIR}/${PN}-node.patch"
)
src_prepare() {
default
# We remove as much precompiled code as we can,
# node modules not written in JS cannot be removed
# thus "-bin".
# use system node
rm node || die
rm lib/node || die
# remove bundled ripgrep binary
rm lib/vscode/node_modules/vscode-ripgrep/bin/rg || die
# not needed
rm code-server || die
rm postinstall.sh || die
# already in /usr/portage/licenses/MIT
rm LICENSE.txt || die
}
src_install() {
local mydocs="README.md ThirdPartyNotices.txt"
for doc in ${mydocs}
do
(dodoc "${doc}" && rm "${doc}") || die
done
insinto "/usr/lib/${MY_PN}"
doins -r .
fperms +x "${EPREFIX}/usr/lib/${MY_PN}/bin/${MY_PN}"
dosym "${EPREFIX}/usr/lib/${MY_PN}/bin/${MY_PN}" "${EPREFIX}/usr/bin/${MY_PN}"
dosym "${EPREFIX}/usr/bin/rg" "${EPREFIX}/usr/lib/${MY_PN}/lib/vscode/node_modules/vscode-ripgrep/bin/rg"
systemd_dounit "${FILESDIR}/${MY_PN}.service"
}
pkg_postinst() {
elog "When using code-server systemd service run it as a user"
elog "For example: 'systemctl --user enable --now code-server'"
}