16 lines
399 B
Plaintext
16 lines
399 B
Plaintext
|
# Description: System call tracing utility (like trace, truss, etc)
|
||
|
# URL: http://www.liacs.nl/~wichert/strace/
|
||
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
||
|
|
||
|
name=strace
|
||
|
version=4.5.18
|
||
|
release=1
|
||
|
source=(http://dl.sourceforge.net/$name/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr --mandir=/usr/man
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|