summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-20 01:56:00 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-20 01:56:00 (EDT)
commit72dff94cceb72d94651db287ee49fc74d12944ec (patch)
tree8df18d06d1b1138f6a97e943b33bd3d069ee4cb7
Initial commit.
-rw-r--r--.gitignore11
-rwxr-xr-xbuild22
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--source.mk11
6 files changed, 53 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/
diff --git a/build b/build
new file mode 100755
index 0000000..32a31bb
--- /dev/null
+++ b/build
@@ -0,0 +1,22 @@
+#!/usr/bin/make -f
+
+upstream_source_dir = ogg
+# For 1.3.2 (from <https://www.xiph.org/downloads/>):
+source_md5sum = 5c3a34309d8b98640827e5d0991a4015
+
+include ../source.mk
+
+nop:
+ @:
+
+build:
+ oh-autoconfigure -- \
+ --enable-static
+ 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..d364948
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+libogg (1.3.2-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pj@pehjota.net> Fri, 20 Jun 2014 01:55:19 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..864d8c9
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Build-Depends: opkhelper-3.0
+Homepage: https://www.xiph.org/ogg/
diff --git a/format b/format
new file mode 100644
index 0000000..cd5ac03
--- /dev/null
+++ b/format
@@ -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)