Skip to content

Commit

Permalink
initial package for stardust-flatland
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen-sz committed Sep 7, 2024
1 parent 7ed0dc8 commit 7914947
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
8 changes: 8 additions & 0 deletions anda/misc/stardust-flatland/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-flatland.spec"
}
labels {
nightly = "1"
}
}
40 changes: 40 additions & 0 deletions anda/misc/stardust-flatland/stardust-flatland.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
%global commit b83f2eced868fe71248ba7681df978698eb978f0
%global commit_date 20240824
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global debug_package %{nil}
%define __os_install_post %{nil}

Name: stardust-flatland
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Flatland for StardustXR.
URL: https://github.com/StardustXR/flatland
Source0: https://github.com/StardustXR/flatland/archive/%commit/flatland-%commit.tar.gz
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold
Requires: libgcc glibc

Provides: flatland
Conflicts: flatland

%description
Flatland for StardustXR.

%prep
%autosetup -n flatland-%commit
%cargo_prep_online

%build
%cargo_build

%install
%cargo_install

%files
%_bindir/flatland
%license LICENSE
%doc README.md

%changelog
* Sat Sep 7 2024 Owen-sz <[email protected]>
- Package StardustXR Flatland
7 changes: 7 additions & 0 deletions anda/misc/stardust-flatland/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
if filters.contains("nightly") {
rpm.global("commit", gh_commit("StardustXR/flatland"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}
}

0 comments on commit 7914947

Please sign in to comment.