]> git.pld-linux.org Git - packages/tllist.git/blame - tllist.spec
up to 1.1.0
[packages/tllist.git] / tllist.spec
CommitLineData
3f7cdf4a
JP
1Summary: A C header file only implementation of a typed linked list
2Name: tllist
a528acbd 3Version: 1.1.0
3f7cdf4a
JP
4Release: 1
5License: MIT
6Group: Development/Libraries
7Source0: https://codeberg.org/dnkl/tllist/archive/%{version}.tar.gz
a528acbd 8# Source0-md5: 77e9f57c5d37d74fd09522fee5f5137d
3f7cdf4a
JP
9URL: https://codeberg.org/dnkl/tllist
10BuildRequires: meson >= 0.54.0
11BuildRequires: ninja
12BuildRequires: pkgconfig
13BuildRequires: rpmbuild(macros) >= 1.736
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
5d1edd30
JP
16%define _enable_debug_packages 0
17
3f7cdf4a
JP
18%description
19tllist is a Typed Linked List C header file only library implemented
20using pre-processor macros.
21
22%package devel
23Summary: A C header file only implementation of a typed linked list
24Group: Development/Libraries
25
26%description devel
27tllist is a Typed Linked List C header file only library implemented
28using pre-processor macros.
29
30%prep
31%setup -q -n %{name}
32
33%build
34%meson build
35
36%ninja_build -C build
37
38%install
39rm -rf $RPM_BUILD_ROOT
40
41%ninja_install -C build
42
43%clean
44rm -rf $RPM_BUILD_ROOT
45
46%files devel
47%defattr(644,root,root,755)
48%doc README.md
49%{_includedir}/tllist.h
50%{_pkgconfigdir}/tllist.pc
This page took 0.043348 seconds and 4 git commands to generate.