diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-08-01 19:18:11 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-08-01 19:18:11 (EDT) |
commit | f04928b5e674f6f7015c9d40b017049d86015a56 (patch) | |
tree | aa1f4b7289fc0806e3905fe2e0df343f8e52e65a |
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-- | source.mk | 8 |
6 files changed, 34 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..b5f8d81 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +wpa-supplicant (2.2-1) trunk + + * Initial release. + + -- "P. J. McDermott" <pj@pehjota.net> Fri, 01 Aug 2014 19:17:41 -0400 @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" <pj@pehjota.net> +Build-Depends: opkhelper-3.0 +Homepage: http://w1.fi/wpa_supplicant/ @@ -0,0 +1 @@ +2.0 diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..31e2d1e --- /dev/null +++ b/source.mk @@ -0,0 +1,8 @@ +upstream_archive = wpa_supplicant-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz +upstream_url = http://w1.fi/releases/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz + +$(source_archive): + wget -O '$@' '$(upstream_url)' + +source: $(source_archive) |