summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-10-12 17:17:04 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-10-12 17:17:04 (EDT)
commit14475b63adea6cc2cdc5a42141d0121ec0f1aac3 (patch)
tree187606ceb477556f5dba402d4589aa8591d69473
Initial commit
-rw-r--r--.gitignore11
-rwxr-xr-xbuild9
-rw-r--r--changelog5
-rw-r--r--control6
-rw-r--r--format1
-rw-r--r--source.mk10
6 files changed, 42 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..ece25f1
--- /dev/null
+++ b/build
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# For 3.1.2:
+source_sha256sum = eb87eacd8fe49e8d90c8fdc189813023ccc319c5e752b01fb6ad0cc7b2c53d5e
+
+include ../source.mk
+
+nop:
+ @:
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..46606c2
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+libarchive (3.1.2-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pj@pehjota.net> Sun, 12 Oct 2014 17:08:54 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..da3743f
--- /dev/null
+++ b/control
@@ -0,0 +1,6 @@
+Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Build-Depends: opkhelper-3.0,
+ libz.1-dev,
+ libbz2-dev,
+ liblzma-dev,
+Homepage: http://www.libarchive.org/
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..7b3729c
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,10 @@
+upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz
+upstream_url = http://www.libarchive.org/downloads/$(upstream_archive)
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz
+
+$(source_archive):
+ wget -c '$(upstream_url)'
+ printf '$(source_sha256sum) $(upstream_archive)' | sha256sum -c -
+ mv '$(upstream_archive)' '$@'
+
+source: $(source_archive)