forked from kiss-community/repo
14 lines
269 B
Bash
Executable File
14 lines
269 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export LDFLAGS="$LDFLAGS -static"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
mv "$1/usr/bin/make" "$1/usr/bin/gmake"
|
|
mv "$1/usr/share/man/man1/make.1" "$1/usr/share/man/man1/gmake.1"
|
|
ln -s gmake "$1/usr/bin/make"
|