diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-10-15 16:21:12 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-10-15 16:21:12 (EDT) |
commit | 21a468dbe80dc2e94a002dbbd1ab4d5f3f2a20dc (patch) | |
tree | c30b37479c5d0ba01e6508183fbd50f637697cbe |
Initial commit
-rw-r--r-- | .gitignore | 11 | ||||
-rwxr-xr-x | build | 6 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 3 | ||||
-rw-r--r-- | format | 1 | ||||
-rw-r--r-- | keyring.gpg | bin | 0 -> 10123 bytes | |||
-rw-r--r-- | source.mk | 19 |
7 files changed, 45 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,6 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: diff --git a/changelog b/changelog new file mode 100644 index 0000000..8055f5f --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +libtomcrypt (1.17-1) trunk + + * Initial release. + + -- "P. J. McDermott" <pj@pehjota.net> Wed, 15 Oct 2014 16:16:03 -0400 @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" <pj@pehjota.net> +Build-Depends: opkhelper-3.0, libtool +Homepage: http://libtom.org/?page=features&whatfile=crypt @@ -0,0 +1 @@ +2.0 diff --git a/keyring.gpg b/keyring.gpg Binary files differnew file mode 100644 index 0000000..bef59b1 --- /dev/null +++ b/keyring.gpg diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..1a2bf9d --- /dev/null +++ b/source.mk @@ -0,0 +1,19 @@ +upstream_archive = crypt-$(OPK_SOURCE_VERSION_UPSTREAM).tar.bz2 +upstream_url = http://libtom.org/files/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2 +keys = '6EF3 EC1D 36EE 80D6 51E8 A799 1C79 7C31 3C89 C25F' + +$(source_archive): + wget -c '$(upstream_url)' + set -e; if gpg --version >/dev/null 2>&1; then \ + wget -c '$(upstream_url).sig'; \ + [ -e ../keyring.gpg ] || \ + gpg --keyring ../keyring.gpg --no-default-keyring \ + --recv-keys $(keys) || true; \ + rm -f ../keyring.gpg~; \ + gpg --verify --keyring ../keyring.gpg \ + '$(upstream_archive).sig'; \ + fi + mv '$(upstream_archive)' '$@' + +source: $(source_archive) |