13 lines
129 B
Bash
Executable File
13 lines
129 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
autoupdate
|
|
|
|
./autogen.sh
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-tls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|