26 lines
635 B
Bash
26 lines
635 B
Bash
# Template file for 'janet'
|
|
pkgname=janet
|
|
version=1.12.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=a04670448ad41802830c1b4a5dc217d85ed39727734ee5e63a5cf59aa2d50e78
|
|
|
|
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
|
|
}
|
|
}
|