This guide covers how to install sitemarker.
The stable version can easily be installed via flathub. First, if you haven’t already, go to flathub and click on Set Up and set up flatpak for your system. Then, open terminal and enter the following commands:
flatpak install flathub io.github.aerocyber.sitemarker
The stable version can also be installed after building it from source.
The instructions assume the following packages are installed for your system:
For building, follow the commands in terminal:
# Get the source code
git clone https://github.com/aerocyber/sitemarker
# Checkout the version to install.
git checkout 1.2.3
# Build it
meson build
# Install it
cd build
sudo ninja install
# The installation fails due to the executable (sitemakrer) not having enough permissions. Fix it.
sudo chmod +x $(which sitemarker)
Building for installing with flatpak is fairly simple.
Get the source and open move to the stable version
# Get the source code
git clone https://github.com/aerocyber/sitemarker
# Checkout the version to install.
git checkout 1.1.0
Install GNOME Builder.
Open the project in GNOME Builder and export it. Then, open terminal and execute:
flatpak install --user Path/to/io.github.aerocyber.sitemarker.flatpak
Not officially supported yet.
Development/beta versions are not available to install from Flathub.
The development version can be installed after building it from source.
The instructions assume the following packages are installed for your system:
For building, follow the commands in terminal:
# Get the source code
git clone https://github.com/aerocyber/sitemarker
# Checkout the dev branch to install.
git checkout dev
# Set platform. Platform should be either of apk, linux or windows
PLATFORM=linux
# Build it
flutter build --release $PLATFORM
# Open the directory location
xdg-open ./build/
Run:
./build-flatpak.sh
Building on Windows require the installation of Visual Studio. Follow the official flutter documentation
# Get the source code
git clone https://github.com/aerocyber/sitemarker
# Checkout the dev branch to install.
git checkout dev
# Set platform. Platform should be either of apk, linux or windows
PLATFORM=windows
# Build it
flutter build --release $PLATFORM
# Open the directory location
xdg-open ./build/
Mac is NOT officially supported. But you can try to run it.