mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-29 23:08:28 +00:00
4643523b9e
* chore(sync): frawhide -> f44 * bump(gurk): release 3 → 4 * bump(discord-ptb): release 1 → 2 * bump(chdig): release 1 → 2 * bump(discord-canary): release 1 → 2 * bump(feishin): release 1 → 2 * bump(bazzite-portal): release 3 → 4 * bump(discord): release 1 → 2 * bump(coolercontrol): release 1 → 2 * bump(discord-ptb-openasar): release 1 → 2 * bump(bitwarden-cli.bin): release 2 → 3 * bump(discord-openasar): release 1 → 2 * bump(discord-canary-openasar): release 1 → 2 --------- Co-authored-by: hamachitan[bot] <252235638+hamachitan[bot]@users.noreply.github.com>
54 lines
1.1 KiB
RPMSpec
54 lines
1.1 KiB
RPMSpec
%define debug_package %nil
|
|
|
|
Name: args-hxx
|
|
Version: 6.4.8
|
|
Release: 1%?dist
|
|
Summary: A simple header-only C++ argument parser library
|
|
License: MIT
|
|
URL: https://github.com/Taywee/args
|
|
Source0: %url/archive/refs/tags/%version.tar.gz
|
|
BuildRequires: make doxygen gcc-c++ cmake
|
|
|
|
%description
|
|
A simple header-only C++ argument parser library. Supposed to be flexible and
|
|
powerful, and attempts to be compatible with the functionality of the Python
|
|
standard argparse library (though not necessarily the API).
|
|
|
|
|
|
%package doc
|
|
Summary: Documentations for args-hxx
|
|
|
|
%description doc
|
|
%summary.
|
|
|
|
|
|
%prep
|
|
%autosetup -n args-%version
|
|
|
|
%build
|
|
%cmake
|
|
%cmake_build
|
|
make doc/man
|
|
|
|
%install
|
|
%cmake_install
|
|
make installman DESTDIR=%buildroot%_prefix
|
|
|
|
%files
|
|
%_includedir/args.hxx
|
|
/usr/lib/cmake/args/args-config-version.cmake
|
|
/usr/lib/cmake/args/args-config.cmake
|
|
%_libdir/pkgconfig/args.pc
|
|
|
|
%files doc
|
|
%_mandir/man3/args*
|
|
%_mandir/man3/DoublesReader.3.gz
|
|
%_mandir/man3/StringAssignable.3.gz
|
|
%_mandir/man3/ToLowerReader.3.gz
|
|
%_mandir/man3/conanfile_ArgsConan.3.gz
|
|
%_mandir/man3/md_CONTRIBUTING.3.gz
|
|
|
|
|
|
%changelog
|
|
%autochangelog
|