album-dl/PKGBUILD

15 lines
393 B
Bash
Raw Permalink Normal View History

2021-12-12 13:43:07 +01:00
pkgname="album-dl"
pkgver="1.2.0"
2021-12-12 13:43:07 +01:00
pkgrel="1"
pkgdesc="Downloads a playlist using yt-dlp as mp3s and sets some metadata tags for the whole album"
2021-12-12 13:43:07 +01:00
arch=("x86_64")
depends=("yt-dlp" "ffmpeg")
2021-12-12 13:43:07 +01:00
license=("GPLv2")
source=("album-dl.sh")
sha512sums=("SKIP")
package() {
mkdir -p "${pkgdir}/usr/bin"
cp "${srcdir}/album-dl.sh" "${pkgdir}/usr/bin/album-dl"
chmod +x "${pkgdir}/usr/bin/album-dl"
}