39 lines
1.2 KiB
Text
39 lines
1.2 KiB
Text
# Template file for 'lutok'
|
|
pkgname=lutok
|
|
version=0.4
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-doxygen"
|
|
hostmakedepends="pkg-config doxygen"
|
|
makedepends="lua-devel"
|
|
short_desc="Lightweight C++ API for Lua"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="BSD"
|
|
homepage="http://code.google.com/p/lutok"
|
|
distfiles="https://lutok.googlecode.com/files/lutok-$version.tar.gz"
|
|
checksum=2cec51efa0c8d65ace8b21eaa08384b77abc5087b46e785f78de1c21fb754cd5
|
|
long_desc="
|
|
Lutok provides thin C++ wrappers around the Lua C API to ease the interaction
|
|
between C++ and Lua. These wrappers make intensive use of RAII to prevent
|
|
resource leakage, expose C++-friendly data types, report errors by means of
|
|
exceptions and ensure that the Lua stack is always left untouched in the face
|
|
of errors. The library also provides a small subset of miscellaneous utility
|
|
functions built on top of the wrappers."
|
|
|
|
lutok-devel_package() {
|
|
depends="lua-devel lutok>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
|
|
lutok_package() {
|
|
pkg_install() {
|
|
vmove all
|
|
}
|
|
}
|