summaryrefslogtreecommitdiff
path: root/repo/core/dejagnu.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/dejagnu.xibuild')
-rw-r--r--repo/core/dejagnu.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/core/dejagnu.xibuild b/repo/core/dejagnu.xibuild
new file mode 100644
index 0000000..2e6acdc
--- /dev/null
+++ b/repo/core/dejagnu.xibuild
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+DEPS=(sh expect)
+
+SOURCE=git://git.sv.gnu.org/dejagnu.git
+DESC="a framework for running test suites on GNU tools"
+
+
+build () {
+ mkdir -v build
+ cd build
+
+ ../configure --prefix=/usr
+
+ makeinfo --html --no-split -o doc/dejagnu.html ../doc/dejagnu.texi
+ makeinfo --plaintext -o doc/dejagnu.txt ../doc/dejagnu.texi
+
+ make DESTDIR=$PKG_DEST install
+
+ install -v -dm755 $PKG_DEST/usr/share/doc/dejagnu-1.6.3
+ install -v -m644 doc/dejagnu.{html,txt} $PKG_DEST/usr/share/doc/dejagnu-1.6.3
+}
+
+