summaryrefslogtreecommitdiff
path: root/repo/system/lua.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-10 11:59:16 +0000
committerdavidovski <david@davidovski.xyz>2022-03-10 11:59:16 +0000
commitbb499959d88da1b3937c23b5405089c907188a81 (patch)
treed9ddba6d0c8f1152c3919067a52250c6bf0759f9 /repo/system/lua.xibuild
parent3602ce227f784f1c6233ef6ad3cd8f5ccad28e66 (diff)
added and patched broken packages
Diffstat (limited to 'repo/system/lua.xibuild')
-rw-r--r--repo/system/lua.xibuild23
1 files changed, 12 insertions, 11 deletions
diff --git a/repo/system/lua.xibuild b/repo/system/lua.xibuild
index 6a9d521..c8c992f 100644
--- a/repo/system/lua.xibuild
+++ b/repo/system/lua.xibuild
@@ -43,16 +43,17 @@ build () {
}
package () {
- make install
make INSTALL_TOP=/usr \
- DESTDIR=$PKG_DEST \
- INSTALL_DATA="cp -d" \
- INSTALL_MAN=/usr/share/man/man1 \
- TO_LIB="liblua.so liblua.so.${PKG_VER} liblua.so.5.4.4" \
- install &&
-
- mkdir -pv $PKG_DEST/usr/share/doc/lua-$PKG_VER &&
- cp -v doc/*.{html,css,gif,png} $PKG_DEST/usr/share/doc/lua-$PKG_VER &&
-
- install -v -m644 -D lua.pc $PKG_DEST/usr/lib/pkgconfig/lua.pc
+ DESTDIR=$PKG_DEST \
+ INSTALL="install" \
+ INSTALL_MAN=/usr/share/man/man1 \
+ TO_LIB="liblua.so liblua.so.${PKG_VER} liblua.so.5.4.4" \
+ install &&
+
+ mkdir -p $PKG_DEST/usr/share/doc/lua-$PKG_VER &&
+ for s in html css gif png; do
+ cp doc/*.$s $PKG_DEST/usr/share/doc/lua-$PKG_VER
+ done
+
+ install -m644 -D lua.pc $PKG_DEST/usr/lib/pkgconfig/lua.pc
}