You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postsack/postsack-native
Benedikt Terhechte 9a35b99971
Cleanup Dependencies (#12)
* Moved deps into ps-core and `pub use` exported them so they're only in one place

* Updated Version Numbers
2 years ago
..
icons Removed postsack to postsack-native 2 years ago
src Removed postsack to postsack-native 2 years ago
tests Fixed tests 2 years ago
.gitignore Removed postsack to postsack-native 2 years ago
Cargo.lock Removed postsack to postsack-native 2 years ago
Cargo.toml Cleanup Dependencies (#12) 2 years ago
Readme.md Added documentation 2 years ago
build_linux.sh Added documentation 2 years ago
build_mac.sh Removed postsack to postsack-native 2 years ago
build_windows.bat Added documentation 2 years ago

Readme.md

Postsack Native

This crate embeds ps-core, ps-database and ps-importer to build a native version of Postsack for macOS, Linux and Windows.

A native version can be run via cargo run or cargo build, however a proper application requires installing cargo bundle:

cargo install cargo-bundle

macOS

For macOS, there is a script that will build a fat binary (with aarch64 and x86_64) into a macOS Postsack.app bundle. Just running cargo bundle --release will also create an app bundle, but it will only contain the host architecture.

./build_mac.sh

Linux

Depending on your Linux installation, you will need to install a couple of dependencies:

Fedora Based

sudo dnf install @development-tools glib cairo-devel pango-devel gdk-pixbux2-devel atk-devel gtk3 gtk3-devel libsqlite3x-devel

Ubuntu based

sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libsqlite3-dev

Building

./build_linux.sh

Windows

Building for Windows works but doesn't create a proper application (e.g. with an icon) and also doesn't create a proper installer.

Running build_windows.bat therefore will currently just run cargo build --release

build_windows.bat