mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 02:27:10 +02:00
28 lines
776 B
Text
28 lines
776 B
Text
# Maintainer: Cowington Post <cowingtonpost@gmail.com>
|
|
pkgname=youtube-tui
|
|
pkgver=0.8.1
|
|
pkgrel=0
|
|
pkgdesc="Aesthetically pleasing YouTube TUI written in Rust"
|
|
url="https://siriusmart.github.io/youtube-tui/"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="cargo cargo-auditable mpv-dev libsixel-dev"
|
|
source="https://github.com/Siriusmart/youtube-tui/archive/v$pkgver/youtube-tui-$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
cargo fetch --target="$CTARGET" --locked
|
|
}
|
|
|
|
build() {
|
|
cargo auditable build --frozen --release
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 target/release/youtube-tui -t "$pkgdir"/usr/bin
|
|
}
|
|
|
|
sha512sums="
|
|
e93b96ab863145f32d691adf3846b895466c24c451b62866f3ccabc813da022e2aaae1dd413f4c58d6cb31566c0c0e84561f0a17474b5d4a06a6e36f980a2724 youtube-tui-0.8.1.tar.gz
|
|
"
|