Warning, /multimedia/kasts/README.md is written in an unsupported language. File is not indexed.

0001 # Kasts
0002 
0003 Kasts is a convergent podcast application.
0004 
0005 <a href='https://flathub.org/apps/details/org.kde.kasts'><img width='190px' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-i-en.png'/></a>
0006 
0007 ![Timeline](https://cdn.kde.org/screenshots/kasts/kasts-desktop.png)
0008 
0009 # Get it
0010 
0011 Nightly Android APKs are available at [KDE's Binary Factory](https://binary-factory.kde.org/view/Android/job/Kasts_Nightly_android-arm64/).
0012 
0013 # Bug reports
0014 
0015 Please don't use GitLab issues for reporting bugs, instead report them [here](https://bugs.kde.org/enter_bug.cgi?format=guided&product=kasts).
0016 
0017 # Building
0018 
0019 Note: When using versions of Kasts built from git-master, it's possible that the database format or the name of downloaded files change from one version to another without the necessary migrations to handle it. If you notice bugs after upgrading to a git-master version, export your feeds, delete `~/.local/share/KDE/kasts` and import the feeds again.
0020 
0021 ## Requirements
0022  - KCoreAddons
0023  - KI18n
0024  - KConfig
0025  - Kirigami
0026  - Kirigami-addons
0027  - Syndication
0028  - TagLib
0029  - QtKeychain
0030  - ThreadWeaver
0031  - KColorScheme
0032  - libVLC (optional, recommended)
0033  - GStreamer (optional)
0034 
0035 ### On Debian
0036 
0037 ```
0038  apt install build-essential cmake extra-cmake-modules qtbase5-dev \
0039     qtdeclarative5-dev qtquickcontrols2-5-dev qtmultimedia5-dev libqt5svg5-dev \
0040     kirigami2-dev kirigami-addons-dev libkf5syndication-dev \
0041     libkf5config-dev libkf5i18n-dev libkf5coreaddons-dev libtag1-dev \
0042     qtkeychain-qt5-dev libkf5networkmanagerqt-dev libkf5threadweaver-dev \
0043     libvlc-dev libvlccore-dev
0044 ```
0045 
0046 ## Linux
0047 
0048 ```
0049 git clone https://invent.kde.org/multimedia/kasts
0050 cd kasts
0051 mkdir build && cd build
0052 cmake .. -DCMAKE_PREFIX_PATH=/usr
0053 make
0054 sudo make install
0055 ```
0056 
0057 This assumes all dependencies are installed. If your distribution does not provide
0058 them, you can use [kdesrc-build](https://kdesrc-build.kde.org/) to build all of them.
0059 
0060 ## Android
0061 
0062 You can build Kasts for Android using KDE's [Docker-based build environment](https://community.kde.org/Android/Environment_via_Container).
0063