mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-30 03:58:51 +02:00
Merged in humdinger/haikuports (pull request #70)
Add recipe for youtube-dl.
This commit is contained in:
56
net-misc/youtube_dl/youtube_dl-2013.12.20.recipe
Normal file
56
net-misc/youtube_dl/youtube_dl-2013.12.20.recipe
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
SUMMARY="A command-line program to download videos from various sites."
|
||||||
|
DESCRIPTION="
|
||||||
|
The program is usually invoked as youtube-dl followed by options
|
||||||
|
and the video URL.
|
||||||
|
Run 'youtube-dl --help' and get a summary of all options.
|
||||||
|
|
||||||
|
Some YouTube videos are served using Adobe's proprietary RTMP
|
||||||
|
protocol, which imposes DRM restrictions and encrypts the
|
||||||
|
connection. youtube-dl is not able to download these videos by
|
||||||
|
itself.
|
||||||
|
"
|
||||||
|
HOMEPAGE="http://rg3.github.io/youtube-dl/index.html"
|
||||||
|
SRC_URI="https://yt-dl.org/downloads/2013.12.20/youtube-dl-2013.12.20.tar.gz"
|
||||||
|
CHECKSUM_MD5="be0cf52206f9ba3f5f841deec3ce3bde"
|
||||||
|
REVISION="1"
|
||||||
|
LICENSE="Public Domain"
|
||||||
|
COPYRIGHT="2006-2013 Ricardo Garcia Gonzalez"
|
||||||
|
|
||||||
|
ARCHITECTURES="any"
|
||||||
|
|
||||||
|
PROVIDES="
|
||||||
|
youtube_dl = $portVersion
|
||||||
|
cmd:youtube_dl = $portVersion
|
||||||
|
"
|
||||||
|
REQUIRES="
|
||||||
|
haiku >= $haikuVersion
|
||||||
|
cmd:python
|
||||||
|
"
|
||||||
|
BUILD_REQUIRES="
|
||||||
|
haiku_devel >= $haikuVersion
|
||||||
|
"
|
||||||
|
BUILD_PREREQUIRES="
|
||||||
|
cmd:make
|
||||||
|
cmd:zip
|
||||||
|
"
|
||||||
|
|
||||||
|
SOURCE_DIR="youtube-dl"
|
||||||
|
|
||||||
|
BUILD()
|
||||||
|
{
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
INSTALL()
|
||||||
|
{
|
||||||
|
zip -q youtube-dl youtube_dl/*.py youtube_dl/*/*.py
|
||||||
|
zip -q -j youtube-dl youtube_dl/__main__.py
|
||||||
|
echo '#!/bin/python' > youtube-dl
|
||||||
|
cat youtube-dl.zip >> youtube-dl
|
||||||
|
rm youtube-dl.zip
|
||||||
|
chmod a+x youtube-dl
|
||||||
|
|
||||||
|
mkdir -p $binDir $manDir/man1
|
||||||
|
cp -a youtube-dl $binDir
|
||||||
|
cp -a youtube-dl.1 $manDir/man1
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user