24 lines
621 B
Bash
24 lines
621 B
Bash
# Template file for 'lily'
|
|
pkgname=lily
|
|
version=1.3
|
|
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=4764c5c6b9c4974135bf4e6d5f4a7ee175f214a5f1572ad5ae86b4bdb79d1db1
|
|
|
|
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
|
|
}
|
|
}
|