mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
66 lines
1.7 KiB
Bash
66 lines
1.7 KiB
Bash
SUMMARY="A tool to play back online videos in MediaPlayer"
|
|
DESCRIPTION="
|
|
UberTuber grabs clips from various sites and opens them in your media player \
|
|
while they're being downloaded. The Python script youtube-dl downloads the \
|
|
video file to the temporary folder. From there it is either played back while \
|
|
it gets downloaded or moved to another location determined in a file dialog.
|
|
|
|
UberTuber monitors the system clipboard for URLs pointing to the supported \
|
|
websites and automatically inserts them into its URL text field.
|
|
|
|
If the playback of a clip from a particular website works, depends on the \
|
|
underlying youtube-dl script, which gets updated from time to time. At this \
|
|
moment there is support for clips from:
|
|
|
|
YouTube, Google video, MetaCafe, DailyMotion, Yahoo video, Photobucket, \
|
|
DepositFiles, Vimeo.com, blip.tv, Facebook video, Escapist magazine and many \
|
|
more
|
|
|
|
For a complete list, check http://rg3.github.io/youtube-dl/supportedsites.html
|
|
"
|
|
HOMEPAGE="http://sourceforge.net/projects/ubertuber/"
|
|
SOURCE_URI="git://git.code.sf.net/p/ubertuber/code#5c1501728eac2d7481c4f6e11a66821ec2ad6775"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2011-2014 Humdinger"
|
|
REVISION="3"
|
|
ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
ubertuber = $portVersion
|
|
app:UberTuber = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:youtube_dl
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/UberTuber_settings
|
|
settings/UberTuber_monitored_sites
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
ubertuberDir=$appsDir/UberTuber
|
|
mkdir -p $ubertuberDir
|
|
|
|
cp -af objects/UberTuber $ubertuberDir
|
|
cp -af ReadMe.html $ubertuberDir
|
|
cp -r images $ubertuberDir
|
|
|
|
addAppDeskbarSymlink $ubertuberDir/UberTuber
|
|
}
|