]> git.pld-linux.org Git - packages/chrpath.git/blob - chrpath.spec
- manpage update.
[packages/chrpath.git] / chrpath.spec
1 Summary:        chrpath - change the rpath or runpath in binaries
2 Summary(pl):    chrpath - narzêdzie do zmiany rpath lub runpath w binariach
3 Name:           chrpath
4 Version:        0.13
5 Release:        2
6 License:        GPL
7 Group:          Applications/Editors
8 #Source0ActiveFtp
9 Source0:        ftp://ftp.hungry.com/pub/hungry/chrpath/%{name}-%{version}.tar.gz
10 # Source0-md5:  b73072a8fbba277558c50364b65bb407
11 Patch0:         %{name}-keepgoing.patch
12 Patch1:         %{name}-multilib.patch
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libtool
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %define         no_install_post_chrpath 1
19
20 %description
21 chrpath changes, lists or removes the rpath or runpath setting in a
22 binary. The rpath, or runpath if it is present, is where the runtime
23 linker should look for the libraries needed for a program.
24
25 %description -l pl
26 chrpath zmienia, pokazuje lub usuwa ustawienia rpath lub runpath w
27 binariach. rpath lub runpath, je¶li jest ustawione, pokazuje miejsce,
28 w którym linker powinien szukaæ bibliotek wymaganych przez program.
29
30 %prep
31 %setup -q
32 %patch0 -p1
33 %ifarch %{x8664} ppc64 s390x sparc64
34 %patch1 -p1
35 %endif
36
37 %build
38 %{__libtoolize}
39 %{__aclocal}
40 %{__autoheader}
41 %{__autoconf}
42 %{__automake}
43 %configure
44 %{__make}
45
46 %install
47 rm -rf $RPM_BUILD_ROOT
48
49 %{__make} install \
50         DESTDIR=$RPM_BUILD_ROOT \
51         doc_DATA=""
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc AUTHORS ChangeLog NEWS README
59 %attr(755,root,root) %{_bindir}/*
60 %ifarch %{x8664} ppc64 s390x sparc64
61 %attr(755,root,root) %{_libdir}/libchrpath*.so
62 %endif
63 %{_mandir}/man1/*
This page took 0.03308 seconds and 3 git commands to generate.