25 lines
684 B
Bash
25 lines
684 B
Bash
# Template file for 'lily'
|
|
pkgname=lily
|
|
version=1.11
|
|
revision=1
|
|
wrksrc="lily-v${version}"
|
|
build_style=cmake
|
|
short_desc="Interpreted language with a focus on expressiveness and type safety"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="MIT"
|
|
homepage="https://gitlab.com/FascinatedBox/lily"
|
|
distfiles="https://gitlab.com/FascinatedBox/lily/-/archive/v${version}/lily-v${version}.tar.bz2"
|
|
checksum=29a57da43d590982cf5b83437ae1a495e3d66f8e07e5abc748ededc7b6962fcb
|
|
|
|
post_install() {
|
|
vlicense license.txt
|
|
}
|
|
|
|
lily-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|