blob: 9265774e5620f53096eae4390fc78f5051167af2 (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: George Eleftheriou <eleftg>
# Contributor: Lex Black <autumn-wind at web dot de>
# Contributor: Jed Brown <jed@59A2.org>
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"
}
|