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