diff options
author | P. 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) |
commit | 14475b63adea6cc2cdc5a42141d0121ec0f1aac3 (patch) | |
tree | 187606ceb477556f5dba402d4589aa8591d69473 |
Initial commit
-rw-r--r-- | .gitignore | 11 | ||||
-rwxr-xr-x | build | 9 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 6 | ||||
-rw-r--r-- | format | 1 | ||||
-rw-r--r-- | source.mk | 10 |
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/ @@ -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 @@ -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/ @@ -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) |