mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 04:58:52 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
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="http://youtube-dl.org/downloads/2014.06.19/youtube-dl-2014.06.19.tar.gz"
|
|
CHECKSUM_SHA256="877f5a1652693e80d905831bbc10055bd101d6620176b6cb08dd983e465eba94"
|
|
REVISION="1"
|
|
LICENSE="Public Domain"
|
|
COPYRIGHT="2006-2014 Ricardo Garcia Gonzalez"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
youtube_dl = $portVersion
|
|
cmd:youtube_dl = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:python
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:zip
|
|
"
|
|
|
|
SOURCE_DIR="youtube-dl"
|
|
|
|
BUILD()
|
|
{
|
|
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
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir $manDir/man1
|
|
cp -a youtube-dl $binDir
|
|
cp -a youtube-dl.1 $manDir/man1
|
|
}
|