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