mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 12:51:04 +00:00
21 lines
371 B
Bash
21 lines
371 B
Bash
|
EAPI=5
|
||
|
|
||
|
DESCRIPTION="An Improved Quake C Compiler"
|
||
|
HOMEPAGE="http://graphitemaster.github.com/gmqcc/"
|
||
|
SRC_URI="https://github.com/graphitemaster/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="MIT"
|
||
|
|
||
|
SLOT="0"
|
||
|
IUSE=""
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
|
||
|
src_prepare() {
|
||
|
sed -i -e "s:-Werror ::" Makefile || die
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
emake install PREFIX="${D}/usr"
|
||
|
dodoc README
|
||
|
}
|