10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
make
|
|
make PREFIX="$1/usr" install
|
|
|
|
# register for alternatives system
|
|
mv "$1/usr/bin/qm4" "$1/usr/bin/m4"
|
|
mv "$1/usr/share/man/man1/qm4.1" "$1/usr/share/man/man1/m4.1"
|
|
|