Files
2026-07-08 23:04:52 +02:00

38 lines
1.1 KiB
Bash

pkgname='zshell'
pkgver=0.2.0.r36.g80ee714
pkgrel=1
pkgdesc='The cli for zshell'
arch=('any')
url='https://git.zach-dev.cc/zach/z-bar-qt'
license=('GPL-3.0-only')
depends=('python' 'python-pillow' 'python-materialyoucolor' 'libnotify' 'swappy' 'dart-sass'
'app2unit' 'wl-clipboard' 'dconf' 'cliphist' 'python-typer' 'qt6-canvaspainter')
makedepends=('python-build' 'python-installer' 'python-hatch' 'python-hatch-vcs' 'cargo' 'rust' 'cmake' 'ninja' 'nuitka')
source=("$pkgname::git+$url.git#branch=main")
options=('!lto')
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' |
sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "${srcdir}/${pkgname}/zshell-img-tools"
cargo build --release
cd "${srcdir}/${pkgname}"
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/
cmake --build build
}
package() {
cd "${srcdir}/${pkgname}"
DESTDIR="$pkgdir" cmake --install build
install -Dm755 \
"${srcdir}/${pkgname}/zshell-img-tools/target/release/zshell-img-tools" \
"${pkgdir}/usr/bin/zshell-img-tools"
}