-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add: envision * libadwaita-1 Signed-off-by: madomado <[email protected]> * libusb-1.0 Signed-off-by: madomado <[email protected]> * files Signed-off-by: madomado <[email protected]> --------- Signed-off-by: madomado <[email protected]>
- Loading branch information
Showing
3 changed files
with
56 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 = "envision.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,46 @@ | ||
%global commit 25d5aa48e30e5cc702c031c9c48ec4b2d5389cc9 | ||
%global commit_date 20240530 | ||
%global shortcommit %(c=%{commit}; echo ${c:0:7}) | ||
|
||
Name: envision | ||
Version: %commit_date.%commit | ||
Release: 1%?dist | ||
Summary: UI for building, configuring and running Monado, the open source OpenXR runtime | ||
License: AGPL-3.0-or-later | ||
URL: https://gitlab.com/gabmus/envision/ | ||
Source0: %url/-/archive/%commit/envision-%commit.tar.gz | ||
BuildRequires: meson ninja-build cargo | ||
BuildRequires: pkgconfig(glib-2.0) >= 2.66 | ||
BuildRequires: pkgconfig(gio-2.0) >= 2.66 | ||
BuildRequires: pkgconfig(gtk4) >= 4.10.0 | ||
BuildRequires: pkgconfig(vte-2.91-gtk4) >= 0.72.0 | ||
BuildRequires: pkgconfig(libadwaita-1) | ||
BuildRequires: pkgconfig(libusb-1.0) | ||
BuildRequires: openssl-devel | ||
BuildRequires: libappstream-glib | ||
BuildRequires: desktop-file-utils | ||
BuildRequires: glib2-devel | ||
Recommends: android-tools | ||
|
||
%description | ||
%summary. | ||
|
||
%prep | ||
%autosetup -n envision-%commit | ||
|
||
%build | ||
%meson | ||
%meson_build | ||
|
||
%install | ||
%meson_install | ||
|
||
%files | ||
%doc README.md | ||
%license LICENSE | ||
%_bindir/envision | ||
%_datadir/applications/org.gabmus.envision.desktop | ||
%_datadir/envision/ | ||
%_iconsdir/hicolor/scalable/apps/org.gabmus.envision.svg | ||
%_iconsdir/hicolor/symbolic/apps/org.gabmus.envision-symbolic.svg | ||
%_metainfodir/org.gabmus.envision.appdata.xml |
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 @@ | ||
rpm.global("commit", gitlab_commit("gitlab.com", "46446166", "main")); | ||
if rpm.changed() { | ||
rpm.global("commit_date", date()); | ||
rpm.release(); | ||
} |