11 lines
122 B
Bash
Executable File
11 lines
122 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
autoreconf -i
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-desktopfiles
|
|
|
|
make
|
|
make DESTDIR="$1" install
|