summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-22 16:40:48 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-22 16:41:27 (EDT)
commit1a2af59130191b748040d523be8bc504fa76bf21 (patch)
tree678b5803dac3f771f4dd542a649d0cf1a9a66883
Initial commit.
-rw-r--r--.gitignore11
-rwxr-xr-xbuild6
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--source.mk10
6 files changed, 36 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..2a40656
--- /dev/null
+++ b/build
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+include ../source.mk
+
+nop:
+ @:
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..cfae64e
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+dev86 (0.16.21-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pj@pehjota.net> Sun, 22 Jun 2014 16:35:40 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..fbbce1e
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Build-Depends: opkhelper-3.0
+Homepage: http://v3.sk/~lkundrak/dev86/
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..7134832
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,10 @@
+upstream_archive = Dev86src-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz
+upstream_base_url = http://v3.sk/~lkundrak/dev86
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz
+
+$(source_archive):
+ wget -c '$(upstream_base_url)/$(upstream_archive)' || \
+ wget -c '$(upstream_base_url)/archive/$(upstream_archive)'
+ mv '$(upstream_archive)' '$(source_archive)'
+
+source: $(source_archive)