Add and update things

This commit is contained in:
moparisthebest
2024-11-21 00:02:15 -05:00
parent d48238b016
commit 874aaf882e
20 changed files with 570 additions and 126 deletions

70
src/helix-git/PKGBUILD Normal file
View File

@@ -0,0 +1,70 @@
# Maintainer: Robin Jadoul (aur@ur4ndom.dev)
# Contributor: Wojciech Kępka (wojciech@wkepka.dev)
pkgname=helix-git
_pkgname=helix
pkgver=24.07.r149.gaf7a1fd20
pkgrel=1
pkgdesc="A text editor written in rust"
url="https://helix-editor.com"
license=("MPL-2.0")
_git="https://github.com/helix-editor/${_pkgname}.git"
arch=(x86_64)
makedepends=('git' 'cargo')
depends=()
provides=('hx')
conflicts=('helix')
options=(!lto)
source=("${_pkgname}::git+${_git}")
sha256sums=('SKIP')
_bin="hx"
_lib_path="/usr/lib/${_pkgname}"
_rt_path="${_lib_path}/runtime"
pkgver() {
cd "${_pkgname}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cat > "$_bin" << EOF
#!/usr/bin/env sh
HELIX_RUNTIME=${_rt_path} exec ${_lib_path}/${_bin} "\$@"
EOF
chmod +x "$_bin"
cd "${_pkgname}"
export CARGO_TARGET_DIR=target
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "${_pkgname}"
export CARGO_TARGET_DIR=target
cargo build --locked --profile opt
}
check() {
cd "${_pkgname}"
export CARGO_TARGET_DIR=target
cargo test --workspace --locked
export RUSTFLAGS="${RUSTFLAGS} --cfg tokio_unstable"
cargo integration-test --locked
}
package() {
cd "${_pkgname}"
mkdir -p "${pkgdir}${_lib_path}"
rm -r "runtime/grammars/sources"
cp -r "runtime" "${pkgdir}${_lib_path}"
install -Dm 0755 "target/opt/${_bin}" "${pkgdir}${_lib_path}/${_bin}"
install -Dm 0644 "LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
install -Dm 0777 "${srcdir}/${_bin}" "${pkgdir}/usr/bin/${_bin}"
install -Dm 0644 "contrib/Helix.desktop" "${pkgdir}/usr/share/applications/Helix.desktop"
install -Dm 0644 "contrib/Helix.appdata.xml" "${pkgdir}/usr/share/appdata/Helix.appdata.xml"
install -Dm 0644 "contrib/helix.png" "${pkgdir}/usr/share/icons/Helix.png"
install -Dm 0644 "contrib/completion/hx.zsh" "${pkgdir}/usr/share/zsh/site-functions/_hx"
install -Dm 0644 "contrib/completion/hx.bash" "${pkgdir}/usr/share/bash-completion/completions/hx.bash"
install -Dm 0644 "contrib/completion/hx.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/hx.fish"
}