void-packages/srcpkgs/lutok/template

23 lines
944 B
Text
Raw Normal View History

2012-03-07 09:12:02 +00:00
# Template file for 'lutok'
pkgname=lutok
2012-06-05 12:31:40 +00:00
version=0.2
2013-03-10 09:38:05 +00:00
revision=2
2012-03-07 09:12:02 +00:00
build_style=gnu-configure
configure_args="--with-doxygen"
2012-06-05 12:31:40 +00:00
subpackages="lutok-devel"
makedepends="pkg-config doxygen lua-devel"
2013-03-10 09:38:05 +00:00
crossmakedepends="lua-devel"
2012-03-07 09:12:02 +00:00
short_desc="Lightweight C++ API for Lua"
maintainer="Juan RP <xtraeme@gmail.com>"
license="BSD"
2012-06-05 12:31:40 +00:00
homepage="http://code.google.com/p/lutok"
distfiles="https://lutok.googlecode.com/files/lutok-$version.tar.gz"
checksum=df6f175fdd417ff830ec46509816a40b92fec816de726e815b4ae4f7fea405bd
2012-03-07 09:12:02 +00:00
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."