10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--mandir=/usr
|
||
|
|
||
|
make
|
||
|
install -Dm755 tcptrace "$1/usr/bin/tcptrace"
|
||
|
install -Dm644 tcptrace.man "$1/usr/share/man/man1/tcptrace.1"
|