diff options
| author | Lostt <lostt@noreply.codeberg.org> | 2026-05-28 03:23:50 +0200 |
|---|---|---|
| committer | Lostt <lostt@noreply.codeberg.org> | 2026-05-28 03:23:50 +0200 |
| commit | 45ffcf98cb5ed1679e1f86b8d6308e47f5402dfc (patch) | |
| tree | 5313422ef21573e88a400e46f226cc81946a6e4c /repos/community | |
| parent | 71be430e5d4bfcedc422f571f5df7a4514a8ea92 (diff) | |
| download | alicelinux-45ffcf98cb5ed1679e1f86b8d6308e47f5402dfc.tar.gz alicelinux-45ffcf98cb5ed1679e1f86b8d6308e47f5402dfc.zip | |
lua build file
Diffstat (limited to 'repos/community')
| -rw-r--r-- | repos/community/lua/abuild | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/repos/community/lua/abuild b/repos/community/lua/abuild new file mode 100644 index 00000000..9cf6ace0 --- /dev/null +++ b/repos/community/lua/abuild @@ -0,0 +1,13 @@ +name=lua +version=5.5.0 +release=1 +source="https://www.lua.org/ftp/lua-$version.tar.gz" + +build() { + make MYCFLAGS="-fPIC $CFLAGS" MYLDFLAGS="$LDFLAGS" linux + make install \ + INSTALL_DATA='cp -d' \ + INSTALL_TOP=$PKG/usr \ + INSTALL_INC=$PKG/usr/include/lua55 \ + INSTALL_MAN=$PKG/usr/share/man/man1 +} |