mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 14:50:07 -07:00
12 lines
153 B
Bash
Executable File
12 lines
153 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < gcc-14.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--sbindir=/usr/bin
|
|
|
|
make
|
|
make DESTDIR="$1" install
|