10 lines
121 B
Bash
10 lines
121 B
Bash
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
ln -s /usr/bin/less "$1/usr/bin/more"
|