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