]> git.pld-linux.org Git - packages/findsym.git/blob - findsym.spec
perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
[packages/findsym.git] / findsym.spec
1 Summary:        Tools to manipulate ELF files
2 Summary(pl):    Narzêdzia do obróbki plików ELF
3 Name:           findsym
4 Version:        1.1
5 Release:        1
6 License:        GPL
7 Group:          Development/Tools
8 Group(de):      Entwicklung/Werkzeuge
9 Group(fr):      Development/Outils
10 Group(pl):      Programowanie/Narzêdzia
11 Source0:        http://meatloop.andover.net/~count/src/%{name}-%{version}.tar.gz
12 URL:            http://freshmeat.net/projects/findsym/
13 BuildArch:      noarch
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 This program will attempt to search through all your shared libraries
18 for a specific symbol. This is useful when trying to compile something
19 and the compiler complains about an undefined reference similar to
20 this: /tmp/cceuy0nE.o(.text+0x7): undefined reference to `foo' Running
21 "findsym foo" would try to locate the symbol foo and indicate what
22 library you should be linking with.
23
24 %description -l pl
25 Ten program próbuje szukaæ okre¶lonego symbolu we wszystkich
26 bibliotekach wspó³dzielonych. Jest przydatny, kiedy próbujemy co¶
27 skompilowaæ, a kompilator narzeka na niezdefiniowny symbol w sposób
28 podobny do: /tmp/cceuy0nE.o(.text+0x7): undefined reference to `foo'.
29 Uruchomienie "findsym foo" spróbuje odnale¼æ symbol foo i
30 zidentyfikowaæ bibliotekê, z któr± program powinien byæ linkowany.
31
32 %prep
33 %setup -q -n findsym
34
35 %install
36 rm -rf $RPM_BUILD_ROOT
37 install -d $RPM_BUILD_ROOT%{_bindir}
38
39 install findsym $RPM_BUILD_ROOT%{_bindir}
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(644,root,root,755)
46 %attr(755,root,root) %{_bindir}/*
This page took 0.483589 seconds and 3 git commands to generate.