diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-08-04 15:54:33 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-08-04 15:54:33 (EDT) |
commit | d4827ace5591588ae1f3ff4f3c083212bd371f42 (patch) | |
tree | 4be5dbade5c9e3ce8f5ab7856e26d3a985f1d521 |
Initial commit
-rw-r--r-- | .gitignore | 11 | ||||
-rwxr-xr-x | build | 17 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 3 | ||||
-rw-r--r-- | format | 1 | ||||
-rw-r--r-- | source.mk | 10 |
6 files changed, 47 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,17 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: + +build: + oh-autoconfigure + oh-autobuild + touch $@ + +install: build + oh-autoinstall + oh-fixperms + oh-strip + oh-installfiles diff --git a/changelog b/changelog new file mode 100644 index 0000000..b8cbff1 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +acpi (1.7-1) trunk + + * Initial release. + + -- "P. J. McDermott" <pj@pehjota.net> Mon, 04 Aug 2014 15:50:51 -0400 @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" <pj@pehjota.net> +Build-Depends: opkhelper-3.0 +Homepage: http://sourceforge.net/projects/acpiclient/ @@ -0,0 +1 @@ +2.0 diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..5f5e267 --- /dev/null +++ b/source.mk @@ -0,0 +1,10 @@ +upstream_sf_base = http://downloads.sourceforge.net/project/acpiclient +upstream_path = acpiclient/$(OPK_SOURCE_VERSION_UPSTREAM) +upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz +upstream_url = $(upstream_sf_base)/$(upstream_path)/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz + +$(source_archive): + wget -O '$@' '$(upstream_url)' + +source: $(source_archive) |