aports/main/lua-soap/APKBUILD
2023-12-07 14:14:56 +00:00

28 lines
817 B
Text

# Contributor: Timo Teräs <timo.teras@iki.fi>
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=lua-soap
pkgver=3.0
_pkgver=${pkgver/./_}
pkgrel=1
pkgdesc="Lua library to ease the use of SOAP"
url="http://tomasguisasola.github.io/luasoap/"
arch="noarch"
license="MIT"
depends="lua-expat lua-socket"
source="https://github.com/tomasguisasola/luasoap/archive/v$_pkgver.tar.gz"
builddir="$srcdir"/luasoap-$_pkgver
options="!check"
build() {
make
}
package() {
make LUA_DIR="$pkgdir"/usr/share/lua/5.1 install
# https://github.com/tomasguisasola/luasoap/issues/7
mv "$pkgdir"/usr/share/lua/5.1/soap/soap.lua \
"$pkgdir"/usr/share/lua/5.1/soap.lua
}
sha512sums="de0fa591f5bc9bbf9740660edd4482289bca2139e60119cb5607304cd7afdf6b0d63aedf5c67386022d538a5f8d206323fada49e8ae268f297dec71eda2bc0ad v3_0.tar.gz"