summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-09-19 12:01:05 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-09-19 12:01:05 (EDT)
commitbd522028516b6202a4f4d3edc3b5e59f66f26564 (patch)
treec97373ec719b86e189c7a7da2cb829eaf5b113be
Initial commit.
-rw-r--r--.gitignore11
-rwxr-xr-xbuild24
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--source.mk11
6 files changed, 55 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..213a9bf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,11 @@
+# Swap and backup files
+.*.sw*
+.sw*
+*~
+Session.vim
+
+# Source archives
+*-*.orig.tar.*
+
+# Work area
+tmp/
diff --git a/build b/build
new file mode 100755
index 0000000..94a8b89
--- /dev/null
+++ b/build
@@ -0,0 +1,24 @@
+#!/usr/bin/make -f
+
+include ../source.mk
+
+nop:
+ @:
+
+configure:
+ oh-autoconfigure -- \
+ --enable-shared \
+ --enable-threads \
+ --disable-rpath
+ touch $@
+
+build: configure
+ oh-autobuild -- \
+ SONAME='libexpect.so.$(OPK_SOURCE_VERSION_UPSTREAM)'
+ touch $@
+
+install: build
+ oh-autoinstall
+ oh-fixperms
+ oh-strip
+ oh-installfiles
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..9511b1e
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+expect (5.45-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pjm@nac.net> Thu, 19 Sep 2013 11:41:30 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..b080f4e
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pjm@nac.net>
+Build-Depends: opkhelper-3.0, libtcl8.6-dev
+Homepage: http://expect.nist.gov/
diff --git a/format b/format
new file mode 100644
index 0000000..cd5ac03
--- /dev/null
+++ b/format
@@ -0,0 +1 @@
+2.0
diff --git a/source.mk b/source.mk
new file mode 100644
index 0000000..795afb5
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,11 @@
+upstream_sf_base = http://downloads.sourceforge.net/project/expect
+upstream_path = Expect/$(OPK_SOURCE_VERSION_UPSTREAM)
+upstream_archive = expect$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz
+upstream_url = $(upstream_sf_base)/$(upstream_path)/$(upstream_archive)
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz
+
+$(source_archive):
+ wget '$(upstream_url)'
+ mv '$(upstream_archive)' '$(source_archive)'
+
+source: $(source_archive)