-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from Ultramarine-Linux/w/readymade
feat(readymade): add readymade installer
- Loading branch information
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
project pkg { | ||
rpm { | ||
spec = "readymade.spec" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Name: readymade | ||
Version: 0.2.0 | ||
Release: 1%?dist | ||
Summary: Install ready-made distribution images! | ||
License: MIT | ||
URL: https://github.com/FyraLabs/readymade | ||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz | ||
BuildRequires: anda-srpm-macros rust-packaging mold | ||
BuildRequires: pkgconfig(libhelium-1) | ||
BuildRequires: pkgconfig(gnome-desktop-4) | ||
BuildRequires: clang-devel | ||
|
||
%description | ||
Readymade is a Linux Distribution installer based on the great distinst library by System76. | ||
|
||
It is created as a replacement to Red Hat's Anaconda installer for Ultramarine Linux and tauOS after we have heard many complaints about the poor UX design of Anaconda, and the lack of working alternative installers for RPM-based distributions. | ||
|
||
%prep | ||
%autosetup | ||
%cargo_prep_online | ||
|
||
%build | ||
|
||
%install | ||
%cargo_install | ||
./install.sh %buildroot | ||
|
||
%find_lang com.fyralabs.Readymade | ||
|
||
%files -f com.fyralabs.Readymade.lang | ||
%_bindir/readymade | ||
%_datadir/polkit-1/actions/com.fyralabs.pkexec.readymade.policy | ||
%_datadir/readymade | ||
%_sysconfdir/readymade.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rpm.version(crates("readymade")); |