1SUMMARY="A media aggregator (and more)"
2DESCRIPTION="BePodder helps you to find, subscribe to, and download \
3multimedia contents. It allows you to easily enjoy audio, video, images and \
4news published around the web in RSS format. It's a Podcaster software.
5
6BePodder includes many cool features:
7
8- Easy to use yet powerful graphical user interface
9- Handles all news/podcast feeds in RSS 0.9, 2.0, Atom, RDF and iTunes
10- Fully integrated with Haiku's BFS file system
11- Integrated podcast, videoblog, imagefeeds, BitTorrentfeeds, newsfeeds and \
12Internationalfeeds, built-in OPML directories with thousands of feeds
13- Advanced channels/lists management with drag and drop support
14- Easy to integrate with other applications like BitTorrent / Installer / \
15Unzip / etc.
16- Players integration with a new 'Auto' option
17- BePodder is 100% adwares/spywares free
18- You don't need an iPod or any kind of MP3 player to use and enjoy BePodder
19- Proxy support
20- Automatic channels check
21- Up to 5 enclosure downloads at the same time (multi-threading)"
22HOMEPAGE="https://github.com/HaikuArchives/BePodder"
23COPYRIGHT="2006-2014 Funky Idea Software"
24LICENSE="MIT"
25REVISION="2"
26SOURCE_URI="$HOMEPAGE/archive/$portVersion.tar.gz"
27CHECKSUM_SHA256="bce88aefa270f6d38227f83bcfab0745fd82fb9684599ef130544a2574dd7e5d"
28SOURCE_DIR="BePodder-$portVersion"
29
30ARCHITECTURES="all"
31
32PROVIDES="
33	bepodder = $portVersion
34	app:BePodder = $portVersion
35	"
36REQUIRES="
37	haiku$secondaryArchSuffix
38	lib:libcurl$secondaryArchSuffix
39	lib:libxml2$secondaryArchSuffix
40	"
41
42BUILD_REQUIRES="
43	haiku${secondaryArchSuffix}_devel
44	devel:libcurl$secondaryArchSuffix
45	devel:libxml2$secondaryArchSuffix
46	"
47BUILD_PREREQUIRES="
48	makefile_engine
49	cmd:gcc$secondaryArchSuffix
50	cmd:make
51	"
52
53BUILD()
54{
55	make $jobArgs -C library/libfish
56	make $jobArgs -C library/libfunky
57	make $jobArgs -C library/librunview
58	make $jobArgs OBJ_DIR=objects -C sources
59}
60
61INSTALL()
62{
63	mkdir -p $appsDir/BePodder
64	cp sources/objects/BePodder $appsDir/BePodder
65	cp -r release/* $appsDir/BePodder
66
67	addAppDeskbarSymlink $appsDir/BePodder/BePodder
68}
69