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