diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-20 01:51:01 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-20 01:51:01 (EDT) |
commit | 2f6a6df71fdc491fa7ef1aab95a5348fda99c798 (patch) | |
tree | 5d5aa9e32ddbedf7feb20c7454c6d861d7433836 |
Initial commit.
-rw-r--r-- | .gitignore | 11 | ||||
-rwxr-xr-x | build | 26 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 3 | ||||
-rw-r--r-- | format | 1 | ||||
-rw-r--r-- | source.mk | 11 |
6 files changed, 57 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,26 @@ +#!/usr/bin/make -f + +upstream_source_dir = vorbis +# For 1.3.4 (from <https://www.xiph.org/downloads/>): +source_md5sum = 55f2288055e44754275a17c9a2497391 + +include ../source.mk + +nop: + @: + +build: + oh-autoconfigure -- \ + --enable-static \ + --with-pic + oh-autobuild + if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \ + oh-autotest; \ + fi + touch $@ + +install: build + oh-autoinstall + oh-fixperms + oh-strip + oh-installfiles diff --git a/changelog b/changelog new file mode 100644 index 0000000..afbe77c --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +libvorbis (1.3.4-1) trunk + + * Initial release. + + -- "P. J. McDermott" <pj@pehjota.net> Fri, 20 Jun 2014 01:47:02 -0400 @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" <pj@pehjota.net> +Build-Depends: opkhelper-3.0 +Homepage: https://www.xiph.org/vorbis/ @@ -0,0 +1 @@ +2.0 diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..ca2cffb --- /dev/null +++ b/source.mk @@ -0,0 +1,11 @@ +upstream_base_url = http://downloads.xiph.org/releases/$(upstream_source_dir) +upstream_url = $(upstream_base_url)/$(upstream_archive) +upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.xz +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.xz + +$(source_archive): + wget -c '$(upstream_url)' + printf '$(source_md5sum) $(upstream_archive)' | md5sum -c - + mv '$(upstream_archive)' '$(source_archive)' + +source: $(source_archive) |