11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#!/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"
|