blob: 1cd97f45661d47fb48805dd83cea0258b24a52ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Maintainer: Noam Lewis
#
# Source package - builds from source
pkgname=fresh-editor
pkgver=0.2.3
pkgrel=1
pkgdesc="A lightweight, fast terminal-based text editor with LSP support and TypeScript plugins"
url="https://sinelaw.github.io/fresh/"
license=("GPL-2.0-only")
arch=('x86_64' 'aarch64')
depends=("gcc-libs" "glibc")
makedepends=("cargo" "clang")
provides=("fresh-editor")
conflicts=("fresh-editor-bin")
options=('!debug')
source=("fresh-editor-${pkgver}-source.tar.gz::https://github.com/sinelaw/fresh/releases/download/v${pkgver}/fresh-editor-${pkgver}-source.tar.gz")
sha256sums=("9941834fd07843d3594b89b68bf3d2cf995cf85e0e291a76818430ef84207867")
prepare() {
cd "fresh-$pkgver"
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "fresh-$pkgver"
export CARGO_TARGET_DIR=target
export CC=clang
cargo build --locked --release
}
package() {
cd "fresh-$pkgver"
# Binary (installed alongside plugins, symlinked from /usr/bin)
install -Dm755 target/release/fresh "$pkgdir/usr/share/$pkgname/fresh"
install -dm755 "$pkgdir/usr/bin"
ln -s "/usr/share/$pkgname/fresh" "$pkgdir/usr/bin/fresh"
# Documentation
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
# License
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# Plugins
cp -r crates/fresh-editor/plugins "$pkgdir/usr/share/$pkgname/"
# Keymaps
cp -r crates/fresh-editor/keymaps "$pkgdir/usr/share/$pkgname/"
}
|