mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
26 lines
587 B
Bash
26 lines
587 B
Bash
pkgname=toluapp
|
|
pkgver=1.0.93
|
|
pkgrel=2
|
|
pkgdesc="Tool to integrate C/C++ code with Lua."
|
|
arch=('x86_64')
|
|
url="https://github.com/LuaDist/toluapp/"
|
|
license=('MIT')
|
|
depends=('lua')
|
|
makedepends=('scons')
|
|
changelog=ChangeLog
|
|
source=('https://github.com/LuaDist/toluapp/archive/1.0.93.tar.gz'
|
|
'config_linux.py')
|
|
md5sums=('689d952034e55d4333fa240f7516e68a'
|
|
'f85232adfa873ea012088dd4d7fb63d7')
|
|
|
|
build() {
|
|
cp $srcdir/config_linux.py $srcdir/toluapp-$pkgver
|
|
cd $srcdir/toluapp-$pkgver
|
|
scons all
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/toluapp-$pkgver
|
|
scons prefix=$pkgdir/usr install
|
|
}
|