summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7ccff93b2adf04050246da308bc62c438b47c775 (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
25
26
27
28
29
30
31
32
# Maintainer: Mattia Biondi <mattia dot biondi3 at studio dot unibo dot it>
pkgname=umps
pkgver=2.0.1
pkgrel=1
pkgdesc="Virtual machine simulator based around the MIPS R2/3000
microprocessor."
arch=('x86_64')
url="http://mps.sourceforge.net/"
license=('GPL2')
depends=('qt4' 'libelf' 'boost' 'libsigc++')
makedepends=('git' 'libtool' 'm4' 'automake' 'autoconf')
source=("$pkgname-$pkgver.tar.gz::https://github.com/tjonjic/umps/archive/master.tar.gz")
md5sums=('SKIP')

build() {
  libtoolize --force
	cd ..
  aclocal
  autoreconf -vfi
  automake --force-missing --add-missing
  autoconf
	./configure --enable-maintainer-mode --with-mips-tool-prefix=mipsel-linux-gnu-
	make
}

check() {
	make -k check
}

package() {
	make DESTDIR="$pkgdir/" install
}