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.xibuild23
1 files changed, 0 insertions, 23 deletions
diff --git a/repo/core/dejagnu.xibuild b/repo/core/dejagnu.xibuild
deleted file mode 100644
index 21a35a4..0000000
--- a/repo/core/dejagnu.xibuild
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-DEPS=(sh expect)
-
-SOURCE=https://ftp.gnu.org/gnu/dejagnu/dejagnu-1.6.3.tar.gz
-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
-}
-
-