https://github.com/cachyos/packageinstaller
Simple Software Application Package Installer for CachyOS which helps setting up & installing applications
https://github.com/cachyos/packageinstaller
Last synced: about 1 year ago
JSON representation
Simple Software Application Package Installer for CachyOS which helps setting up & installing applications
- Host: GitHub
- URL: https://github.com/cachyos/packageinstaller
- Owner: CachyOS
- License: gpl-3.0
- Created: 2022-05-04T00:16:36.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2024-08-26T17:45:20.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T14:22:28.428Z (over 1 year ago)
- Language: C++
- Size: 15.7 MB
- Stars: 6
- Watchers: 2
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cachyos-packageinstaller
Simple Software Application Package Installer.
Requirements
------------
* C++23 feature required (tested with GCC 14.1.1 and Clang 18)
Any compiler which support C++23 standard should work.
######
## Installing from source
This is tested on Arch Linux, but *any* recent Arch Linux based system with latest C++23 compiler should do:
```sh
sudo pacman -Sy \
base-devel cmake pkg-config make qt6-base
```
### Cloning the source code
```sh
git clone https://github.com/cachyos/packageinstaller.git
cd packageinstaller
```
### Building and Configuring
To build, first, configure it(if you intend to install it globally, you
might also want `--prefix=/usr`):
```sh
./configure.sh --prefix=/usr/local
```
Second, build it:
```sh
./build.sh
```
### Libraries used in this project
* [Qt](https://www.qt.io) used for GUI.
* [A modern formatting library](https://github.com/fmtlib/fmt) used for formatting strings, output and logging.