void-packages/srcpkgs/janet/template
2020-05-12 20:22:38 +02:00

28 lines
652 B
Bash

# Template file for 'janet'
pkgname=janet
version=1.9.1
revision=1
build_style=meson
short_desc="Dynamic Lisp dialect and bytecode VM"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="MIT"
homepage="https://janet-lang.org/"
distfiles="https://github.com/janet-lang/janet/archive/v${version}.tar.gz"
checksum=02724d6074a0d6fa53a548e8bdaaf49999f082e30b277c73444900f739a53062
patch_args="-Np1"
post_install() {
vlicense LICENSE
}
janet-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
}
}