blob: be5b605083374274dc41e96b1e5c8ec2c1c2d59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh -e
# Installing the base software
./configure \
--prefix=/usr/gnu \
--without-guile
gmake
gmake DESTDIR=$1 install
# FIXME: Removing info files
rm -rf $1/usr/gnu/share/info
# Symlinking make to gmake
mkdir -p $1/usr/bin
ln -s ../gnu/bin/make $1/usr/bin/gmake
|