34 lines
782 B
Bash
34 lines
782 B
Bash
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
SUMMARY="A flexible, cross-platform scripting library"
|
|
HOMEPAGE="http://www.angelcode.com/angelscript/"
|
|
DOWNLOADS="http://www.angelcode.com/angelscript/sdk/files/angelscript_${PV}.zip"
|
|
|
|
LICENCES="ZLIB"
|
|
SLOT="0"
|
|
PLATFORMS="~amd64 ~x86"
|
|
MYOPTIONS=""
|
|
|
|
DEPENDENCIES="
|
|
build:
|
|
virtual/unzip
|
|
"
|
|
|
|
WORK=${WORKBASE}/sdk
|
|
|
|
src_compile() {
|
|
emake -C ${PN}/projects/gnuc \
|
|
LIBRARYDEST=
|
|
}
|
|
|
|
src_install() {
|
|
emake -C ${PN}/projects/gnuc \
|
|
DESTDIR=${IMAGE} \
|
|
LIBDIR_DEST=usr/$(exhost --target)/lib \
|
|
INCLUDEDIR_DEST=usr/$(exhost --target)/include/ \
|
|
DOCDIR_BASEDIR=usr/share/docs/${PNVR} \
|
|
install install_docs
|
|
}
|
|
|