mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
and: * befar Remove unneeded $secondaryArchSuffix Use g++ * mirrormagic Remove unneeded $secondaryArchSuffix * slime_volley Replaced slime_volley with slimevolley in PROVIDES Add lib:libsdl_net in REQUIRES * super_transball Remove unneeded $secondaryArchSuffix Replaced super_transball with stransball2 in PROVIDES
68 lines
2.0 KiB
Bash
68 lines
2.0 KiB
Bash
SUMMARY="A media aggregator (and more)"
|
|
DESCRIPTION="BePodder helps you to find, subscribe to, and download \
|
|
multimedia contents. It allows you to easily enjoy audio, video, images and \
|
|
news published around the web in RSS format. It's a Podcaster software.
|
|
|
|
BePodder includes many cool features:
|
|
|
|
- Easy to use yet powerful graphical user interface
|
|
- Handles all news/podcast feeds in RSS 0.9, 2.0, Atom, RDF and iTunes
|
|
- Fully integrated with Haiku's BFS file system
|
|
- Integrated podcast, videoblog, imagefeeds, BitTorrentfeeds, newsfeeds and \
|
|
Internationalfeeds, built-in OPML directories with thousands of feeds
|
|
- Advanced channels/lists management with drag and drop support
|
|
- Easy to integrate with other applications like BitTorrent / Installer / \
|
|
Unzip / etc.
|
|
- Players integration with a new 'Auto' option
|
|
- BePodder is 100% adwares/spywares free
|
|
- You don't need an iPod or any kind of MP3 player to use and enjoy BePodder
|
|
- Proxy support
|
|
- Automatic channels check
|
|
- Up to 5 enclosure downloads at the same time (multi-threading)"
|
|
HOMEPAGE="https://github.com/HaikuArchives/BePodder"
|
|
COPYRIGHT="2006-2007 Funky Idea Software"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="git://github.com/HaikuArchives/BePodder#1ff344994cb5799192fd3ed693e4a378676a543e"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
bepodder = $portVersion
|
|
app:BePodder = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libcurl$secondaryArchSuffix
|
|
lib:libxml2$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libcurl$secondaryArchSuffix
|
|
devel:libxml2$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
makefile_engine
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs -C library/libclv
|
|
make $jobArgs -C library/libfish
|
|
make $jobArgs -C library/libfunky
|
|
make $jobArgs -C library/librunview
|
|
make $jobArgs OBJ_DIR=objects -C sources
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/BePodder
|
|
cp sources/objects/BePodder $appsDir/BePodder
|
|
cp -r release/* $appsDir/BePodder
|
|
|
|
addAppDeskbarSymlink $appsDir/BePodder/BePodder
|
|
}
|