summaryrefslogtreecommitdiff
path: root/sowing
diff options
context:
space:
mode:
Diffstat (limited to 'sowing')
-rw-r--r--sowing/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/sowing/PKGBUILD b/sowing/PKGBUILD
new file mode 100644
index 000000000..b6bd18446
--- /dev/null
+++ b/sowing/PKGBUILD
@@ -0,0 +1,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=(http://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"
+}