blob: 64fe0fe60d71073ff2e7c3f6c385e5a093db98c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "A small, portable, general purpose CAS (Computer Algebra System)."
HOMEPAGE = "http://mathomatic.orgserve.de/math/"
SECTION = "console/utils"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = "readline"
inherit autotools
EXTRA_OEMAKE = "READLINE=1"
do_install () {
oe_runmake prefix="${D}${prefix}" \
bindir="${D}${bindir}" \
libdir="${D}${libdir}" \
includedir="${D}${includedir}" \
docdir="${D}${docdir}/${PN}" \
install
}
|