timeshift/docs/development.md
Yegor Yefremov 8607c9dc8f
docs/development.md: fix meson setup command (#224)
meson setup command accepts the build folder name directly.
2023-08-17 09:28:35 -04:00

853 B

Timeshift Development

This documentation provides instructions for developing Timeshift.

Prerequisites

  • meson
  • help2man
  • gettext
  • valac
  • libvte-2.91-dev
  • libgee-0.8-dev
  • libjson-glib-dev
  • libxapp-dev

If you are using a Debian-based distribution, you can install these dependencies by running the following command in a terminal:

sudo apt install meson \
help2man \
gettext \
valac \
libvte-2.91-dev \
libgee-0.8-dev \
libjson-glib-dev \
libxapp-dev

Building and Installing

Step 1. Clone the Timeshift repository

git clone git@github.com:linuxmint/timeshift.git

Step 2. Navigate to the Timeshift folder

cd timeshift

Step 3. Build Timeshift

meson setup build
meson compile -C build 

Step 4. Install Timeshift

sudo meson install -C build