mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-24 08:20:05 -07:00
10 lines
98 B
Bash
Executable File
10 lines
98 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
chmod +x configure
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|