mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-04 14:05:50 -07:00
553c5aede4
I completely forgot that grub has a makedepend on this package
11 lines
131 B
Bash
Executable File
11 lines
131 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove all info files.
|
|
rm -rf "$1/usr/share/info"
|