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