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
24	2015-2018 HaikuArchives Team"
25LICENSE="MIT"
26REVISION="3"
27srcGitRev="17a9e0d3f74d8399974585bdfa9b03dfd82eb1dd"
28SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
29CHECKSUM_SHA256="b4cb279abdb3451c6ebfdd6c7cbafae89939ded9b742e3dc2ed479aefc57b607"
30SOURCE_FILENAME="bepodder-$srcGitRev.tar.gz"
31SOURCE_DIR="BePodder-$srcGitRev"
32
33ARCHITECTURES="all"
34
35USER_SETTINGS_FILES="
36	settings/BePodder.conf
37	settings/BePodder directory
38	"
39
40PROVIDES="
41	bepodder = $portVersion
42	app:BePodder = $portVersion
43	"
44REQUIRES="
45	haiku
46	lib:libcurl
47	lib:libxml2
48	"
49
50BUILD_REQUIRES="
51	haiku_devel
52	devel:libcurl
53	devel:libxml2
54	"
55BUILD_PREREQUIRES="
56	makefile_engine
57	cmd:gcc
58	cmd:make
59	"
60
61BUILD()
62{
63	make $jobArgs -C library/libfish
64	make $jobArgs -C library/libfunky
65	make $jobArgs OBJ_DIR=objects -C sources
66	make OBJ_DIR=objects -C sources bindcatalogs
67}
68
69INSTALL()
70{
71	mkdir -p "$appsDir" "$docDir"
72	cp sources/objects/BePodder "$appsDir"
73	cp -a docs/ReadMe.html "$docDir"
74	cp -r docs/images "$docDir"
75
76	addAppDeskbarSymlink "$appsDir"/BePodder
77}
78