33 lines
727 B
Text
Executable file
33 lines
727 B
Text
Executable file
app=toluapp
|
|
version=1.0.93
|
|
build=1sml
|
|
homepage="https://github.com/LuaDist/toluapp"
|
|
download="https://github.com/LuaDist/toluapp/archive/refs/tags/$version.tar.gz"
|
|
desc="tool to integrate C/C++ code with Lua"
|
|
requires="lua"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
mkdir -p smbuild && cd smbuild
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX="" \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cd ..
|
|
cp README* $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
68f169244f1b37fdeb1a72b0f8fc61a30329c0a828f46af718021c8cfa120fe15379b4b2bc10f0995de90e34735564afd6d302fa1865be60272e52e276e1114f toluapp-1.0.93.tar.gz
|
|
"
|