# Maintainer: Erich Eckner # Contributor: George Eleftheriou # Contributor: Lex Black # Contributor: Jed Brown pkgname=sowing pkgver=1.1.18 pkgrel=3 pkgdesc="Tools for documenting and improving portability" arch=('any') url="http://www.cs.uiuc.edu/~wgropp/projects/software/sowing" license=('GPL') source=(ftp://ftp.mcs.anl.gov/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz) sha256sums=('b63cec263c413b18d283d8885ff38fe0c2267d8fc6b2246b8df922411cab1e13') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --datadir=/usr/share/sowing # force -j1 otherwise compilation problems may occur # depending on the timing of the jobs make -j1 } package() { cd "${srcdir}/${pkgname}-${pkgver}" make install prefix="${pkgdir}/usr" datadir="${pkgdir}/usr/share/sowing" }