29 lines
771 B
Bash
29 lines
771 B
Bash
# Template file for 'janet'
|
|
pkgname=janet
|
|
version=1.33.0
|
|
revision=1
|
|
build_style=meson
|
|
configure_args="-Db_lto=false --libdir=/usr/lib" # breaks jpm
|
|
short_desc="Dynamic Lisp dialect and bytecode VM"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://janet-lang.org/"
|
|
changelog="https://github.com/janet-lang/janet/blob/master/CHANGELOG.md"
|
|
distfiles="https://github.com/janet-lang/janet/archive/v${version}.tar.gz"
|
|
checksum=c9018fbd69b825cfc706d8c40e9464be37e924ce07089933e92f4f931ccf0d8d
|
|
|
|
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
|
|
}
|
|
}
|