-
Notifications
You must be signed in to change notification settings - Fork 10
/
npth.spec.in
56 lines (45 loc) · 1.14 KB
/
npth.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
# This is a template. The dist target uses it to create the real file.
Summary: NPTH - the new GNU Portable Threads Library
Name: npth
Version: @pkg_version@
Release: 1
URL: http://www.gnupg.org/
Source: ftp://ftp.gnupg.org/gcrypt/alpha
Group: Development/Libraries
Copyright: LGPLv2+
BuildRoot: %{_tmppath}/%{name}-%{version}
BuildRequires: make
Prereq: /sbin/ldconfig /sbin/install-info
%description
NPTH is a cooperative thread library.
%prep
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS"; export CFLAGS
./configure --prefix=/usr
make
%install
rm -fr $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT
make install prefix=$RPM_BUILD_ROOT/usr
%clean
rm -fr $RPM_BUILD_ROOT
make distclean
%post
/sbin/ldconfig
%preun
%postun
/sbin/ldconfig
%files
%defattr(-,root,root)
%doc COPYING COPYING.LESSER AUTHORS README INSTALL NEWS ChangeLog TODO THANKS
%attr(0755,root,root) %{_bindir}/npth-config
%attr(0755,root,root) %{_libdir}/*npth.so*
%attr(0755,root,root) %{_libdir}/*npth.la
%attr(0644,root,root) %{_libdir}/*npth.a
%{_includedir}/npth.h
%{_datadir}/aclocal/npth.m4
%changelog
* Thu Oct 06 2011 Marcus Brinkmann <[email protected]>
- initial specfile release for npth.
# EOF