blob: aae5230ee81175634c6d13777112a13efc745371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A simple modern programming language"
HOMEPAGE="https://myrlang.org/"
SRC_URI="https://myrlang.org/releases/${PN}-${PV}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
S="${WORKDIR}/mc/"
src_configure() {
./configure --prefix=/usr
make bootstrap
}
|