-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
23 additions
and
15 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 |
---|---|---|
@@ -1,18 +1,22 @@ | ||
Name: twincam | ||
Version: 0.2 | ||
Release: 4%{?dist} | ||
Summary: A lightweight camera application | ||
|
||
License: GPLv2 | ||
URL: https://github.com/ericcurtin/twincam | ||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz | ||
|
||
BuildRequires: meson | ||
BuildRequires: gcc-c++ | ||
BuildRequires: ninja-build | ||
BuildRequires: pkgconfig(libevent_pthreads) | ||
BuildRequires: pkgconfig(libcamera) | ||
BuildRequires: pkgconfig(libdrm) | ||
Name: twincam | ||
Version: 0.3 | ||
Release: 1%{?dist} | ||
Summary: A lightweight camera application | ||
|
||
License: GPLv2 | ||
URL: https://github.com/ericcurtin/twincam | ||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz | ||
|
||
BuildRequires: meson | ||
BuildRequires: gcc-c++ | ||
BuildRequires: ninja-build | ||
BuildRequires: pkgconfig(libevent_pthreads) | ||
BuildRequires: pkgconfig(libcamera) | ||
BuildRequires: pkgconfig(libdrm) | ||
BuildRequires: SDL2-devel | ||
BuildRequires: SDL2_image-devel | ||
|
||
Conflicts: plymouth | ||
|
||
%description | ||
%{summary}. | ||
|
@@ -36,6 +40,10 @@ BuildRequires: pkgconfig(libdrm) | |
%{_bindir}/twincam | ||
|
||
%changelog | ||
* Thu Feb 10 2022 Eric Curtin <[email protected]> - 0.3-1 | ||
- Add SDL dependancies to ensure we will work on wide variety of hardware | ||
- Add more systemd files to ensure we start and stop correctly on boot | ||
|
||
* Thu Feb 10 2022 Eric Curtin <[email protected]> - 0.2-4 | ||
- Changes after review | ||
- Change gcc-g++ to gcc-c++ | ||
|