forked from libyal/libcstring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibcstring.spec.in
58 lines (45 loc) · 1.26 KB
/
libcstring.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Name: libcstring
Version: @VERSION@
Release: 1
Summary: Library to support cross-platform C string functions
Group: System Environment/Libraries
License: LGPL
Source: %{name}-%{version}.tar.gz
URL: https://github.com/libyal/libcstring/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
libcstring is a library to support cross-platform C string functions
%package devel
Summary: Header files and libraries for developing applications for libcstring
Group: Development/Libraries
Requires: libcstring = %{version}-%{release}
%description devel
Header files and libraries for developing applications for libcstring.
%prep
%setup -q
%build
%configure --prefix=/usr --libdir=%{_libdir} --mandir=%{_mandir}
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
%make_install
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(644,root,root,755)
%doc AUTHORS COPYING NEWS README
%attr(755,root,root) %{_libdir}/*.so.*
%files devel
%defattr(644,root,root,755)
%doc AUTHORS COPYING NEWS README ChangeLog
%{_libdir}/*.a
%{_libdir}/*.la
%{_libdir}/*.so
%{_libdir}/pkgconfig/libcstring.pc
%{_includedir}/*
%{_mandir}/man3/*
%changelog
* @SPEC_DATE@ Joachim Metz <[email protected]> @VERSION@-1
- Auto-generated