Warning, /plasma-mobile/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 # Get it 0008 0009 Nightly Android APKs are available at [KDE's Binary Factory](https://binary-factory.kde.org/view/Android/job/Kasts_Nightly_android-arm64/). 0010 0011 # Building 0012 0013 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. 0014 0015 ## Requirements 0016 - KCoreAddons 0017 - KI18n 0018 - KConfig 0019 - Kirigami 0020 - Syndication 0021 - TagLib 0022 - QtKeychain 0023 - ThreadWeaver 0024 0025 ### On debian 0026 0027 ``` 0028 apt install build-essential cmake extra-cmake-modules qtbase5-dev \ 0029 qtdeclarative5-dev qtquickcontrols2-5-dev qtmultimedia5-dev \ 0030 libkf5syndication-dev libkf5config-dev libkf5i18n-dev \ 0031 libkf5coreaddons-dev libtag1-dev qtkeychain-qt5-dev \ 0032 libkf5networkmanagerqt-dev libkf5threadweaver-dev 0033 ``` 0034 0035 ## Linux 0036 0037 ``` 0038 git clone https://invent.kde.org/plasma-mobile/kasts 0039 cd kasts 0040 mkdir build && cd build 0041 cmake .. -DCMAKE_PREFIX_PATH=/usr 0042 make 0043 sudo make install 0044 ``` 0045 0046 This assumes all dependencies are installed. If your distribution does not provide 0047 them, you can use [kdesrc-build](https://kdesrc-build.kde.org/) to build all of them. 0048 0049 ## Android 0050 0051 You can build Kasts for Android using KDE's [Docker-based build environment](https://community.kde.org/Android/Environment_via_Container). 0052