forked from kiss-community/repo
12 lines
131 B
Bash
Executable File
12 lines
131 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
autoreconf -fi
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-cxx \
|
|
--without-x
|
|
|
|
make
|
|
make DESTDIR="$1" install
|