]> git.pld-linux.org Git - packages/findsym.git/commitdiff
- simple script
authorklakier <klakier@pld-linux.org>
Sat, 7 Apr 2001 08:25:11 +0000 (08:25 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    findsym.spec -> 1.1

findsym.spec [new file with mode: 0644]

diff --git a/findsym.spec b/findsym.spec
new file mode 100644 (file)
index 0000000..5d16435
--- /dev/null
@@ -0,0 +1,37 @@
+Summary:       Tools to manipulate elf files
+Name:          findsym
+Version:       1.0
+Release:       1
+License:       GPL
+Group:         Development/Tools
+Group(de):     Entwicklung/Werkzeuge
+Group(fr):     Development/Outils
+Group(pl):     Programowanie/Narzêdzia
+Source0:       http://meatloop.andover.net/~count/src/%{name}-%{version}.tar.gz
+URL:           http://freshmeat.net/projects/findsym/
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This program will attempt to search through all your shared libraries
+for a specific symbol.  This is useful when trying to compile
+something and the compiler complains about an undefined reference
+similar to this: /tmp/cceuy0nE.o(.text+0x7): undefined reference to
+`foo' Running "findsym foo" would try to locate the symbol foo and
+indicate what library you should be linking with.
+
+
+%prep
+%setup -q -n findsym
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_bindir}
+install findsym $RPM_BUILD_ROOT%{_bindir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/*
This page took 0.064247 seconds and 4 git commands to generate.