# Maintainer: Noam Lewis
#
# Source package - builds from source

pkgname=fresh-editor
pkgver=0.4.6
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=("39622c2cf50ec9edd216b75b455dc2314123033e5ef71225d3c7a4c56980fcef")

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
  # Bake the install channel into the binary (compile-time provenance).
  export FRESH_BUILD_CHANNEL=aur
  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"

  # Provenance receipt (belt-and-suspenders alongside the embedded channel).
  cat > "$pkgdir/usr/share/$pkgname/install-receipt.toml" << EOF
schema = 1
channel = "aur"
version = "$pkgver"
package_name = "fresh-editor"
managed = true
self_update = false

[hints]
aur_pkg = "fresh-editor"
EOF

  # Plugins
  cp -r crates/fresh-editor/plugins "$pkgdir/usr/share/$pkgname/"

  # Keymaps
  cp -r crates/fresh-editor/keymaps "$pkgdir/usr/share/$pkgname/"

  # Desktop file
  install -Dm644 crates/fresh-editor/resources/fresh.desktop "$pkgdir/usr/share/applications/fresh.desktop"

  # Hicolor icons
  for icon in docs/icons/linux/hicolor/*/apps/fresh.png; do
    size=$(basename $(dirname $(dirname "$icon")))
    install -Dm644 "$icon" "$pkgdir/usr/share/icons/hicolor/${size}/apps/fresh.png"
  done
}
