mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
14 lines
240 B
Bash
Executable File
14 lines
240 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--with-udev-rules-dir=/usr/lib/udev/rules.d \
|
|
--disable-alsaconf \
|
|
--disable-bat \
|
|
--disable-xmlto \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|