blob: 2fa175c06c292d0e03c82961ec3dfcc1adaec3e3 (
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
|
pkgname=video-downloader
pkgver=0.9.4
pkgrel=1
pkgdesc="GTK application to download videos from websites like YouTube and many others (based on youtube-dl)"
arch=(any)
url="https://github.com/Unrud/video-downloader"
license=('GPL3')
depends=('ffmpeg' 'gtk3' 'libhandy' 'python-gobject' 'python-mutagen' 'python-pycryptodomex' 'python-pyxattr' 'python-websockets' 'yt-dlp')
makedepends=('git' 'meson')
_commit=da1c4d2b2a0965345b25d33af896010e57dd4229 # tags/0.9.4
source=("git+https://github.com/Unrud/${pkgname}.git/#commit=$_commit")
b2sums=('SKIP')
pkgver() {
cd ${pkgname}
git describe --tags | sed 's/-/+/g'
}
build() {
arch-meson ${pkgname} build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
|