24 lines
621 B
Bash
24 lines
621 B
Bash
# Template file for 'lily'
|
|
pkgname=lily
|
|
version=1.0
|
|
revision=1
|
|
build_style=cmake
|
|
short_desc="An interpreted language with a focus on expressiveness and type safety"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="MIT"
|
|
homepage="http://lily-lang.org"
|
|
distfiles="https://github.com/FascinatedBox/lily/archive/v${version}.tar.gz"
|
|
checksum=6ea719ba3ae3b677b44ca25281ac7bf63f3241b4e6faef6d6bfc794993e292bd
|
|
|
|
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
|
|
}
|
|
}
|