]> git.pld-linux.org Git - packages/chrpath.git/blob - chrpath.spec
7b075a5cc2999bca50cd0be6f8048f2a5225a4b1
[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.9
5 Release:        1
6 Patch0:         %{name}-SEGV.patch
7 License:        GPL
8 Group:          Applications/Editors
9 Source0:        ftp://ftp.hungry.com/pub/hungry/chrpath/%{name}-%{version}.tar.gz
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 chrpath changes, lists or removes the rpath or runpath setting in a
16 binary. The rpath, or runpath if it is present, is where the runtime
17 linker should look for the libraries needed for a program.
18
19 %description -l pl
20 chrpath zmienia, pokazuje lub usuwa ustawienia rpath lub runpath w
21 binariach. rpath lub runpath, je¶li jest ustawione, pokazuje miejsce,
22 w którym linker powinien szukaæ bibliotek wymaganych przez program.
23
24 %prep
25 %setup -q
26 %patch0 -p1
27
28 %build
29 rm -f missing
30 %{__aclocal}
31 %{__autoheader}
32 %{__autoconf}
33 %{__automake}
34 %configure
35 %{__make}
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39
40 %{__make} install \
41         DESTDIR=$RPM_BUILD_ROOT \
42         doc_DATA=""
43
44 %clean
45 rm -rf $RPM_BUILD_ROOT
46
47 %files
48 %defattr(644,root,root,755)
49 %doc AUTHORS ChangeLog NEWS README
50 %attr(755,root,root) %{_bindir}/*
51 %{_mandir}/man1/*
This page took 0.02288 seconds and 3 git commands to generate.