forked from kiss-community/repo
12 lines
178 B
Bash
Executable File
12 lines
178 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/bin \
|
|
--localstatedir=/var \
|
|
--disable-dbus \
|
|
--disable-monitor
|
|
|
|
make
|
|
make DESTDIR="$1" install
|