blob: dc2839fd890c72d40df319886f980c63e65c0ebd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/make -f
include ../source.mk
nop:
@:
build: source
# oh-autoconfigure
oh-autobuild PLAT=posix
touch $@
install: build
mkdir -p dest;
oh-autoinstall -- INSTALL_TOP="$${PWD}/dest/usr" INSTALL_LIB="$${PWD}/dest/usr/lib/$(OPK_HOST_ARCH)" INSTALL_MAN="$${PWD}/dest/usr/share/man/man1" INSTALL_INC="$${PWD}/dest/usr/include/lua5.1"
oh-fixperms
oh-strip
oh-installfiles
|