JakubGluszek / intentio

A prototype of a productivity type desktop app built around the pomodoro concept.
https://intentio.app
Other
30 stars 2 forks source link

Arch linux package? #1

Open DarkRiderJohn opened 1 year ago

DarkRiderJohn commented 1 year ago

Is there way you can add this to AUR package it's easy to download?

JakubGluszek commented 1 year ago

Is there way you can add this to AUR package it's easy to download?

After I release v1.1.0 I'll try to add it there

DarkRiderJohn commented 1 year ago

Can you teach me how to install on arch linux i tried doing npm install npm run tauri dev but it gave an error librocksdb-sys v0.8.0+7.4.4

JakubGluszek commented 1 year ago

Can you teach me how to install on arch linux i tried doing npm install npm run tauri dev but it gave an error librocksdb-sys v0.8.0+7.4.4

You need to install all of the required system dependencies. Try running these commands:

sudo pacman -Syu
sudo pacman -S --needed \
    webkit2gtk \
    base-devel \
    curl \
    wget \
    openssl \
    appmenu-gtk-module \
    gtk3 \
    libappindicator-gtk3 \
    librsvg \
    libvips

// clang is also required
sudo pacman -S clang

// this might  be needed too
sudo pacman -s alsa-lib

I have not tested these since I don't have arch installed on any of my machines.

Edgaras1 commented 1 year ago

tauri provides easy way to build appimage so it would be nice to have that in releases

JakubGluszek commented 1 year ago

tauri provides easy way to build appimage so it would be nice to have that in releases

Good point, will do so with next release