Meikade is a collection of Persian poetry. It is avaiable on iOS, Android, Windows, macOS and Linux.
Platform | Download | Availability |
---|---|---|
iOS | AppStore | ✔️ |
Android | PlayStore | ✔️ |
Windows | exe File | ⏳️ |
macOS | DMG file | ⏳️ |
Linux | Deb Package | ⏳️ |
Before you start the build process, you have to install/resolve Meikade's dependencies like any other application.
In order to start the build process, you have to set up the environment for the respective platforms.
- 📱️ Android: install Android NDK and Android SDK.
- 🍎️ iOS & macOS: install XCode and XCode command-line tools.
- 🐧️ Linux (esp. Ubuntu & other Debian-based distros): install gcc, g++ and make command.
For all the above mentioned platforms, you need to install "git". So for example if you want to build it for Ubuntu, You need to setup your environment using the below command:
sudo apt-get install git g++ gcc
You can download and install Qt from their website qt.io. Also If you want to build Meikade on Ubuntu (or any other Debian-based distro), you could install Qt from the official repositories using the commands below:
sudo apt-get install qtbase5-dev qt5-default "qml-module-qt*"
Meikade is dependant on the QtAseman. So you can build it using the commands below:
git clone https://github.com/Aseman-Land/QtAseman.git
cd QtAseman
mkdir build && cd build
qmake -r ..
make
make install
And if you want to use our launchpad repository you can install QtAseman using the commands below:
sudo apt-add-repository ppa:aseman/qt-modules
sudo apt-get update
sudo apt-get install qt5aseman qt5aseman-dev
Now that you have installed/resolved all needed dependencies It should be pretty easy to build Meikade. Just clone this repository and build it with the following command:
git clone https://github.com/Aseman-Land/Meikade.git
cd Meikade
mkdir build && cd build
qmake -r ..
make
and after building it, execute it from the build directory. That's it. You did it! :)
NOTE: to disable subscription feature on your build, just pass
CONFIG+=disable-subscription
config to qmake command.
To build the project from AUR, simply install the meikade package. It will clone and build the project with it's dependencies and package them for you on your computer. Thanks to zoli
yay -S meikade
Meikade is built using C++ & Qt.