diff --git a/srcpkgs/ltrace/ltrace.rshlibs b/srcpkgs/ltrace/ltrace.rshlibs new file mode 100644 index 00000000000..a5c4c6c2340 --- /dev/null +++ b/srcpkgs/ltrace/ltrace.rshlibs @@ -0,0 +1,2 @@ +libelf.so.1 +libc.so.6 diff --git a/srcpkgs/ltrace/template b/srcpkgs/ltrace/template new file mode 100644 index 00000000000..8c213e42f9c --- /dev/null +++ b/srcpkgs/ltrace/template @@ -0,0 +1,27 @@ +# Template file for 'ltrace' +pkgname=ltrace +version=0.6.0 +revision=1 +build_style=gnu-configure +makedepends="git automake elfutils-devel" +short_desc="Tracks runtime library calls in dynamically linked programs" +maintainer="Juan RP " +homepage="http://ltrace.alioth.debian.org/" +license="GPL-2" +long_desc=" + ltrace intercepts and records dynamic library calls which are called by an + executed process and the signals received by that process. It can also + intercept and print the system calls executed by the program." + +nofetch=yes +noextract=yes +conf_files="/etc/ltrace.conf" + +do_fetch() { + url="git://anonscm.debian.org/collab-maint/ltrace.git" + git clone -b ${version} ${url} ${pkgname}-${version} +} + +pre_configure() { + ./autogen.sh +}