2024-05-22 09:29:02 +00:00

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"