47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2020-2021 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=you-get
|
|
PKG_VERSION:=0.4.1650
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=you-get
|
|
PKG_HASH:=skip
|
|
|
|
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(TOPDIR)/feeds/packages/lang/python/pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk
|
|
|
|
define Package/you-get
|
|
SECTION:=multimedia
|
|
CATEGORY:=Multimedia
|
|
TITLE:=Dumb downloader that scrapes the web
|
|
URL:=https://you-get.org
|
|
DEPENDS:= \
|
|
+ca-bundle \
|
|
+ffmpeg \
|
|
+python3 \
|
|
+python3-email \
|
|
+python3-xml \
|
|
+python3-codecs \
|
|
+python3-ctypes \
|
|
+python3-setuptools
|
|
endef
|
|
|
|
define Package/you-get/description
|
|
You-Get is a tiny command-line utility to download
|
|
media contents (videos, audios, images) from the Web,
|
|
in case there is no other handy way to do it.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,you-get))
|
|
$(eval $(call BuildPackage,you-get))
|
|
$(eval $(call BuildPackage,you-get-src))
|