aboutsummaryrefslogtreecommitdiff
path: root/ltrace.spec
diff options
context:
space:
mode:
authorJuan Cespedes <cespedes@debian.org>2002-03-03 02:37:50 +0100
committerJuan Cespedes <cespedes@debian.org>2002-03-03 02:37:50 +0100
commita4850831bf4b4548af517335081b58cf006fd168 (patch)
tree38dfce9b0f44211c896626d94e8af3c9c06d6b7d /ltrace.spec
parentb1dd77d66f93eeaa6cbf8b101d3e9cf70981e000 (diff)
downloadltrace-a4850831bf4b4548af517335081b58cf006fd168.tar.gz
Version 0.3.21
* Get rid of arch/breakpoint.c; we can do it arch-independent
Diffstat (limited to 'ltrace.spec')
-rw-r--r--ltrace.spec50
1 files changed, 0 insertions, 50 deletions
diff --git a/ltrace.spec b/ltrace.spec
deleted file mode 100644
index 02a9089..0000000
--- a/ltrace.spec
+++ /dev/null
@@ -1,50 +0,0 @@
-%define package ltrace
-%define version 0.3.20
-%define release 1
-%define _mandir /usr/share/man
-Summary: Tracks runtime library calls for dynamically linked executables
-Name: %{package}
-Version: %{version}
-Release: %{release}
-Copyright: GPL
-Group: Development/Debuggers
-ExclusiveArch: arm i386 m68k s390
-Source0: ftp://ftp.debian.org/debian/dists/unstable/main/source/utils/ltrace_%{version}.tar.gz
-Prefix: %{_prefix}
-BuildRoot: /tmp/%{name}-root
-
-%description
-ltrace is a debugging program which runs a specified command until it
-exits. While the command is executing, ltrace intercepts and records
-the dynamic library calls which are called by
-the executed process and the signals received by that process.
-It can also intercept and print the system calls executed by the program.
-
-The program to be traced need not be recompiled for this, so you can
-use it on binaries for which you don't have the source handy.
-
-You should install ltrace if you need a sysadmin tool for tracking the
-execution of processes.
-
-%prep
-%setup -q
-./configure --prefix=/usr
-
-%build
-make
-
-%install
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT
-make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%files
-%defattr(-,root,root)
-%config /etc/ltrace.conf
-%doc COPYING README TODO BUGS ChangeLog
-/usr/bin/ltrace
-%{_mandir}/ltrace.1
-%changelog