diff --git a/anda/stardust/atmosphere/anda.hcl b/anda/stardust/atmosphere/anda.hcl new file mode 100644 index 0000000000..5a82bc12e7 --- /dev/null +++ b/anda/stardust/atmosphere/anda.hcl @@ -0,0 +1,8 @@ +project pkg { + rpm { + spec = "stardust-atmosphere.spec" + } + labels { + nightly = 1 + } +} \ No newline at end of file diff --git a/anda/stardust/atmosphere/stardust-atmosphere.spec b/anda/stardust/atmosphere/stardust-atmosphere.spec new file mode 100644 index 0000000000..e892959abd --- /dev/null +++ b/anda/stardust/atmosphere/stardust-atmosphere.spec @@ -0,0 +1,39 @@ +%global commit 0c8bfb91e8ca32a4895f858067334ed265517309 +%global commit_date 20240822 +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +# Exclude input files from mangling +%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$ + +Name: stardust-atmosphere +Version: %commit_date.%shortcommit +Release: 1%?dist +Summary: Environment, homespace, and setup client for Stardust XR. +URL: https://github.com/StardustXR/atmosphere +Source0: %url/archive/%commit/atmosphere-%commit.tar.gz +License: MIT +BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold libudev-devel g++ libinput-devel libxkbcommon-x11-devel + +Provides: atmosphere +Packager: Owen Zimmerman + +%description +%summary + +%prep +%autosetup -n atmosphere-%commit +%cargo_prep_online + +%build + +%install +%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked +%cargo_install + +%files +%_bindir/atmosphere +%license LICENSE +%doc README.md + +%changelog +* Tue Sep 10 2024 Owen-sz +- Package StardustXR atmosphere diff --git a/anda/stardust/atmosphere/update.rhai b/anda/stardust/atmosphere/update.rhai new file mode 100644 index 0000000000..a375acf6ce --- /dev/null +++ b/anda/stardust/atmosphere/update.rhai @@ -0,0 +1,5 @@ +rpm.global("commit", gh_commit("StardustXR/atmosphere")); +if rpm.changed() { + rpm.release(); + rpm.global("commit_date", date()); +} \ No newline at end of file