From fa2c7177695d2072d541057a9610e55b51ff4db1 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 17:10:20 +0100 Subject: added yt-dlp --- repo/yt-dlp/yt-dlp.xibuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 repo/yt-dlp/yt-dlp.xibuild (limited to 'repo/yt-dlp/yt-dlp.xibuild') diff --git a/repo/yt-dlp/yt-dlp.xibuild b/repo/yt-dlp/yt-dlp.xibuild new file mode 100644 index 0000000..6383be2 --- /dev/null +++ b/repo/yt-dlp/yt-dlp.xibuild @@ -0,0 +1,24 @@ +#!/bin/sh + +NAME="yt-dlp" +DESC="A youtube-dl fork with additional features and fixes" + +MAKEDEPS="make " +DEPS="python ffmpeg brotli cacerts musl " + +PKG_VER=2022.05.18 +SOURCE="https://github.com/yt-dlp/yt-dlp/archive/refs/tags/$PKG_VER.tar.gz" + +build () { + make PREFIX=/usr yt-dlp +} + +package () { + install -Dm755 yt-dlp $PKG_DEST/usr/bin/yt-dlp + # man pages require pandoc to be built, saving that headache for later + #install -Dm644 yt-dlp.1 $PKG_DEST/usr/man/man1/yt-dlp.1 + + #install -Dm644 completions/bash/yt-dlp $PKG_DEST/usr/share/bash-completion/completions/yt-dlp + #install -Dm644 completions/zsh/_yt-dlp $PKG_DEST/usr/share/zsh/site-functions/_yt-dlp + #install -Dm644 completions/fish/yt-dlp.fish $PKG_DEST/usr/share/fish/vendor_completions.d/yt-dlp.fish +} -- cgit v1.2.1