27 lines
680 B
Bash
27 lines
680 B
Bash
# Template file for 'janet'
|
|
pkgname=janet
|
|
version=1.17.2
|
|
revision=1
|
|
build_style=meson
|
|
configure_args="-Db_lto=false" # breaks jpm
|
|
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=3a1d885e16d0940f999b9449efedaa4f70f44f680e9815e1c9a774ed99a8d921
|
|
|
|
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
|
|
}
|
|
}
|