mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-01 17:32:18 +00:00
045030e257
* fix: starship (#1020) rm patch Signed-off-by: madomado <madonuko@outlook.com> * fix(update): crystal (#1019) Signed-off-by: madomado <madonuko@outlook.com> * fix(gnome-shell-extension-appmenu-is-back): patch for GNOME 46 (#1033) * fix: seto-fonts (#1005) Signed-off-by: madomado <madonuko@outlook.com> * add: gsctool (#1007) * add: gsctool * asdasdas * fix: vala-panel (#1006) * fix: vala-panel Signed-off-by: madomado <madonuko@outlook.com> * Create update.rhai Signed-off-by: madomado <madonuko@outlook.com> * Update vala-panel.spec Signed-off-by: madomado <madonuko@outlook.com> * files? Signed-off-by: madomado <madonuko@outlook.com> --------- Signed-off-by: madomado <madonuko@outlook.com> * more updates --------- Signed-off-by: madomado <madonuko@outlook.com> Co-authored-by: madomado <madonuko@outlook.com> Co-authored-by: Cappy Ishihara <cappy@cappuchino.xyz>
41 lines
895 B
RPMSpec
41 lines
895 B
RPMSpec
%define commit c060a44d085fefabd414a026dc3177533f20f0f3
|
|
%define shortcommit %(c=%{commit}; echo ${c:0:12})
|
|
Name: gsctool
|
|
Version: git+%{shortcommit}
|
|
Release: 1%{?dist}
|
|
Summary: Chromium OS EC utilities
|
|
|
|
License: BSD-3-Clause
|
|
URL: https://chromium.googlesource.com/chromiumos/platform/ec
|
|
Source0: https://chromium.googlesource.com/chromiumos/platform/ec/+archive/%{commit}.tar.gz#/%{name}-git+%{commit}.tar.gz
|
|
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libusb-1.0)
|
|
BuildRequires: pkgconfig(openssl)
|
|
BuildRequires: gcc
|
|
|
|
%description
|
|
Chromium OS EC utilities
|
|
|
|
%prep
|
|
%autosetup -c
|
|
|
|
%build
|
|
ls
|
|
pushd extra/usb_updater
|
|
%make_build
|
|
|
|
|
|
%install
|
|
pushd extra/usb_updater
|
|
install -D -m 755 gsctool %{buildroot}%{_bindir}/gsctool
|
|
|
|
|
|
%files
|
|
%{_bindir}/gsctool
|
|
|
|
|
|
%changelog
|
|
* Wed Mar 27 2024 Cappy Ishihara <cappy@cappuchino.xyz>
|
|
- initial release
|