forked from kiss-community/repo
13 lines
161 B
Bash
Executable File
13 lines
161 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < make-4.2.1.patch
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove all info files.
|
|
rm -rf "$1/usr/share/info"
|