summaryrefslogtreecommitdiff
path: root/packaging/libtool.spec
blob: 9dfffb1c48a8d29bdd60d24e6683f1fc7572bf0e (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
%define keepstatic 1
Name:           libtool
BuildRequires:  automake
BuildRequires:  gcc-c++
BuildRequires:  lzma
BuildRequires:  zlib-devel
BuildRequires:	makeinfo
Requires:       automake > 1.4
Requires:       tar
Summary:        A Tool to Build Shared Libraries
License:        GPL-2.0+
Group:          Development/Tools
Version:        2.4.2
Release:        0
Requires:       libltdl = %{version}
Url:            http://www.gnu.org/software/libtool/
Source:         http://ftp.gnu.org/gnu/libtool/libtool-%{version}.tar.gz
Source2:        baselibs.conf
Source3:        libtool-rpmlintrc
Source1001: 	libtool.manifest
Provides:       libltdl-devel
# fedora name
Provides:       libtool-ltdl-devel

%description
GNU libtool is a set of shell scripts to automatically configure UNIX
architectures to build shared libraries in a generic fashion.

%package -n libltdl
Summary:        Libtool Runtime Library
Group:          System/Libraries

%description -n libltdl
Library needed by programs that use the ltdl interface of GNU libtool.

%prep
%setup -q -n libtool-%{version}
cp %{SOURCE1001} .

%build
./configure CFLAGS="$RPM_OPT_FLAGS" \
   --prefix=/usr --infodir=%{_infodir} --libdir=%{_libdir}
# force rebuild with non-broken makeinfo
rm -f doc/libtool.info
make %{?_smp_mflags}


%install
make install DESTDIR=$RPM_BUILD_ROOT

%post -n libltdl -p /sbin/ldconfig

%postun -n libltdl -p /sbin/ldconfig

%files
%manifest %{name}.manifest
%defattr(-, root, root)
%license COPYING
/usr/bin/libtool
/usr/bin/libtoolize
/usr/include/libltdl
/usr/include/ltdl.h
%{_libdir}/libltdl.a
%attr(644, root, root) %{_libdir}/libltdl.la
%{_libdir}/libltdl.so
/usr/share/aclocal/*.m4
%doc %{_infodir}/libtool.info*
%doc %{_mandir}/man1/libtool.1.gz
%doc %{_mandir}/man1/libtoolize.1.gz
/usr/share/libtool

%files -n libltdl
%manifest %{name}.manifest
%defattr(-, root, root)
%{_libdir}/libltdl.so.*

%changelog