strace.paketlendi
This commit is contained in:
parent
289f37f9fb
commit
58449bc5cc
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
}
|
Loading…
Reference in New Issue