blob: a92ba4f644e2ae81b2fd487ff89f7163ba8d1eaf (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# SPDX-License-Identifier: GPL-2.0-only
include $(TOPDIR)/rules.mk
PKG_NAME:=yt-dlp
PKG_VERSION:=2026.3.3
PKG_RELEASE:=1
PYPI_NAME:=yt-dlp
PKG_HASH:=3db7969e3a8964dc786bdebcffa2653f31123bf2a630f04a17bdafb7bbd39952
PYPI_SOURCE_NAME:=yt_dlp
PKG_MAINTAINER:=George Sapkin <george@sapk.in>
PKG_LICENSE:=Unlicense
PKG_LICENSE_FILES:=LICENSE THIRD_PARTY_LICENSES.txt
PKG_CPE_ID:=cpe:/a:yt-dlp_project:yt-dlp
PKG_BUILD_DEPENDS:=python-hatchling/host
include ../../lang/python/pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../../lang/python/python3-package.mk
define Package/yt-dlp
SECTION:=multimedia
CATEGORY:=Multimedia
TITLE:=A feature-rich command-line audio/video downloader
URL:=https://github.com/yt-dlp/yt-dlp
PROVIDES:=youtube-dl
DEPENDS:= \
+ca-certificates \
+python3-asyncio \
+python3-codecs \
+python3-ctypes \
+python3-email \
+python3-logging \
+python3-openssl \
+python3-sqlite3 \
+python3-urllib \
+python3-uuid \
+python3-xml \
+quickjs
endef
define Package/yt-dlp/description
yt-dlp is a feature-rich command-line audio/video downloader with support for
thousands of sites.
endef
define Package/yt-dlp/conffiles
/etc/yt-dlp.conf
endef
define Py3Package/yt-dlp/install
if [ -d $(PKG_INSTALL_DIR)/usr/bin ]; then \
$(INSTALL_DIR) $(1)/usr/bin ; \
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ ; \
fi
$(INSTALL_DIR) $(1)/etc
$(INSTALL_CONF) ./files/yt-dlp.conf $(1)/etc/yt-dlp.conf
endef
$(eval $(call Py3Package,yt-dlp))
$(eval $(call BuildPackage,yt-dlp))
$(eval $(call BuildPackage,yt-dlp-src))
|