Files
shinoa/PKGBUILD
Dmitry 891fc73e25
All checks were successful
Release App / release-app (push) Successful in 1m31s
Use versioned app releases for binary package
2026-04-24 15:00:42 +03:00

20 lines
494 B
Bash

pkgname=shinoa-bin
pkgver=0.1.0
pkgrel=1
pkgdesc='Minimal Telegram terminal client built with ncurses and bundled TDLib'
arch=('x86_64')
url='https://git.mshq.dev/AxiFisk/shinoa'
license=('custom:unknown')
depends=('gcc-libs' 'glibc' 'ncurses' 'openssl' 'zlib')
options=(!debug)
provides=('shinoa')
conflicts=('shinoa')
source=(
"shinoa-linux-x86_64.tar.gz::${url}/releases/download/v${pkgver}/shinoa-linux-x86_64.tar.gz"
)
sha256sums=('SKIP')
package() {
cp -a "$srcdir/usr" "$pkgdir/"
}