25 lines
681 B
Bash
25 lines
681 B
Bash
# Template file for 'lily'
|
|
pkgname=lily
|
|
version=1.8
|
|
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=cbd8d6bfeab37415fefdcd5a4b292792a2d48c74792314544e8501925c9959f9
|
|
|
|
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
|
|
}
|
|
}
|