Some checks failed
Build udis86 / Build and push image (push) Failing after 2m43s
48 lines
864 B
RPMSpec
48 lines
864 B
RPMSpec
%global udis86_commit 5336633af70f3917760a6d441ff02d93477b0c86
|
|
%global udis86_shortcommit %(c=%{udis86_commit}; echo ${c:0:7})
|
|
|
|
Name: udis86
|
|
Version: 1.0.0
|
|
Release: %autorelease
|
|
Summary: Disassembler Library for x86 and x86-64
|
|
BuildArch: noarch
|
|
|
|
License: BSD-3-Clause
|
|
URL: https://github.com/canihavesomecoffee/udis86
|
|
Source: https://github.com/canihavesomecoffee/udis86/archive/%{udis86_commit}/udis86-%{udis86_shortcommit}.tar.gz
|
|
|
|
BuildRequires: meson
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%package devel
|
|
Summary: Disassembler Library for x86 and x86-64
|
|
|
|
%description devel
|
|
%{summary}.
|
|
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
|
|
%build
|
|
%meson
|
|
%meson_build
|
|
|
|
|
|
%install
|
|
%meson_install
|
|
|
|
|
|
%files devel
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_datadir}/pkgconfig/%{name}.pc
|
|
%{_datadir}/%{name}/
|
|
|
|
|
|
%changelog
|
|
%autochangelog
|