summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2023-06-29 23:02:09 -0600
committerAaron Ball <nullspoon@oper.io>2023-06-29 23:02:09 -0600
commit5f5c520b122561b3eb571c9d0bcafc4b1c48c41d (patch)
tree172836af2ef8c30a626291462a1e2c0143b2d261
parent79798280427a97bf62ed5b8ec2e09f52ac98b613 (diff)
downloadports-5f5c520b122561b3eb571c9d0bcafc4b1c48c41d.tar.gz
ports-5f5c520b122561b3eb571c9d0bcafc4b1c48c41d.tar.xz
yt-dlp:Initial commit of version 2023.06.22
-rw-r--r--yt-dlp/.footprint7
-rw-r--r--yt-dlp/.md5sum1
-rw-r--r--yt-dlp/.signature5
-rw-r--r--yt-dlp/Pkgfile22
4 files changed, 35 insertions, 0 deletions
diff --git a/yt-dlp/.footprint b/yt-dlp/.footprint
new file mode 100644
index 0000000..537f7d2
--- /dev/null
+++ b/yt-dlp/.footprint
@@ -0,0 +1,7 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/yt-dlp
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/yt-dlp.1.gz
diff --git a/yt-dlp/.md5sum b/yt-dlp/.md5sum
new file mode 100644
index 0000000..3ce5904
--- /dev/null
+++ b/yt-dlp/.md5sum
@@ -0,0 +1 @@
+f919a7396be83139dc80fffba2c53e06 yt-dlp-2023.06.22.tar.gz
diff --git a/yt-dlp/.signature b/yt-dlp/.signature
new file mode 100644
index 0000000..ecab374
--- /dev/null
+++ b/yt-dlp/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/nullspoon.pub
+RWThnm0RuVZhZuiIB8PviodsxmMYG6UHLQk9h9uyR/xJ/Q1LYdVCTXu8HYS1IuhOlpr/kNokBnt3nHuMctq3iFE150eqNVnprwI=
+SHA256 (Pkgfile) = d6f2422e197913359f17c9ec3caa8fb5d6408a061871f1571683249768690c03
+SHA256 (.footprint) = b13330c79f44e19de64e7dc4026d3d5ab368dcfaded6e2d25ce4813c47f0a796
+SHA256 (yt-dlp-2023.06.22.tar.gz) = 5291eb8e077ee1bc2585f4f522d75f1e4f9fd4c3374bace1572cf59b97bdd9c3
diff --git a/yt-dlp/Pkgfile b/yt-dlp/Pkgfile
new file mode 100644
index 0000000..24d1167
--- /dev/null
+++ b/yt-dlp/Pkgfile
@@ -0,0 +1,22 @@
+# Description: CLI program to access YouTub and other data content
+# URL: https://github.com/yt-dlp/yt-dlp
+# Maintainer: Aaron Ball, nullspoon at oper dot io
+# Depends on: python3-setuptools
+
+name=yt-dlp
+version=2023.06.22
+release=1
+source=(https://github.com/${name}/${name}/releases/download/${version}/${name}.tar.gz)
+renames=(${name}-${version}.tar.gz)
+
+build() {
+ cd ${name}
+
+ install -D ${name} "${PKG}/usr/bin/${name}"
+ install -D -m 0644 "${name}.1" "${PKG}/usr/share/man/man1/${name}.1"
+
+ if prt-get isinst bash-completion > /dev/null 2>&1; then
+ install -D completions/bash/yt-dlp \
+ "${PKG}/usr/share/bash-completion/completions/${name}"
+ fi
+}

Generated by cgit