From 14475b63adea6cc2cdc5a42141d0121ec0f1aac3 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 12 Oct 2014 17:17:04 -0400 Subject: Initial commit --- 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" 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" +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) -- cgit v0.9.1