33 lines
947 B
Bash
33 lines
947 B
Bash
# Template file for spim
|
|
|
|
pkgname="spim"
|
|
version="8.0"
|
|
revision=1
|
|
homepage="http://spimsimulator.sourceforge.net/"
|
|
license="BSD"
|
|
distfiles="http://pages.cs.wisc.edu/~larus/SPIM/spim-${version}.tar.gz"
|
|
checksum="6f205776cb9fa112729507008843b289012190ed3131cbd426c610a58387ee4b"
|
|
maintainer="Toyam Cox <vaelatern@gmail.com>"
|
|
hostmakedepends="flex"
|
|
short_desc="Self-contained simulator/debugger that runs MIPS32 programs"
|
|
do_configure() {
|
|
cd spim
|
|
sed '/Copyright (c) 1990-2010, James R. Larus./,+26!d' README > LICENSE
|
|
sed -i Makefile \
|
|
-e 's:EXCEPTION_DIR = /usr/local/lib/spim:EXCEPTION_DIR = /usr/share/spim:' \
|
|
-e 's:CFLAGS =:CFLAGS +=:' \
|
|
-e 's:LDFLAGS =:LDFLAGS +=:' \
|
|
-e 's:CC = gcc:CC ?= gcc:'
|
|
CC="$CC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" ./Configure
|
|
}
|
|
do_install() {
|
|
vbin spim/spim
|
|
vman Documentation/spim.man spim.1
|
|
vlicense spim/LICENSE LICENSE.BSD
|
|
vinstall CPU/exceptions.s 755 /usr/share/spim/
|
|
}
|
|
do_build() {
|
|
cd spim
|
|
make
|
|
}
|