strace.paketlendi

This commit is contained in:
milisman 2016-07-12 16:08:07 +00:00
parent 289f37f9fb
commit 58449bc5cc
2 changed files with 18 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Description: Define a portable and efficient C API to determine the call-chain of a program. # Description: Define a portable and efficient C API to determine the call-chain of a program.
# URL: http://www.nongnu.org/libunwind/ # URL: http://www.nongnu.org/libunwind/
# Packager: berlius at nutyx dot com # Packager: milisarge
# Depends on: # Depends on:
name=libunwind name=libunwind

View File

@ -0,0 +1,17 @@
# Description: System call tracing utility (like trace, truss, etc)
# URL: http://sourceforge.net/projects/strace/
# Packager: milisarge
# Depends on: libunwind
name=strace
version=4.12
release=1
source=(http://download.sourceforge.net/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-libunwind
make
make DESTDIR=$PKG install
}