10 lines
302 B
Bash
Executable File
10 lines
302 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
make amalg PREFIX=/usr
|
|
make install PREFIX=/usr DESTDIR="$1"
|
|
|
|
# Create these symlinks ourselves as luajit relies
|
|
# on ldconfig to do so and musl does not provide it.
|
|
ln -s libluajit-5.1.so.2.0.5 "$1/usr/lib/libluajit-5.1.so"
|
|
ln -s libluajit-5.1.so.2.0.5 "$1/usr/lib/libluajit-5.1.so.2"
|