blob: f853aab95b1bbb3bc64d34080d8d58ec09d66a87 (
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
|
# Maintainer: ahbnr <anton dot haubner at outlook dot de>
pkgname=yt-bin
pkgver=r60.da2f5bf
pkgrel=1
pkgdesc="Youtube Terminal UI for music streaming. WIP."
arch=('x86_64')
license=('GPL3')
depends=('ncurses5-compat-libs>=6.1' 'mpv>=1:0.32.0' 'youtube-dl>=2020.01.24' 'dbus>=1.12.16')
makedepends=()
replaces=()
conflicts=()
provides=('yt')
backup=()
options=()
install=
source=('https://ahbnr.de/jenkins/job/yt/27/artifact/yt')
noextract=()
md5sums=('SKIP')
build() {
chmod +x "$srcdir/yt"
}
package() {
binary="yt"
strip -s "${binary}"
mkdir -p "$pkgdir/usr/bin"
cp "${binary}" "$pkgdir/usr/bin"
}
|