summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore11
-rwxr-xr-xbuild27
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--source.mk18
6 files changed, 65 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..10d0163
--- /dev/null
+++ b/build
@@ -0,0 +1,27 @@
+#!/usr/bin/make -f
+
+upstream_source_dir = flac
+# For 1.3.0 (from <https://www.xiph.org/downloads/>):
+source_md5sum = 13b5c214cee8373464d3d65dee362cdd
+
+include ../source.mk
+
+nop:
+ @:
+
+build:
+ oh-autoconfigure -- \
+ --disable-rpath \
+ --enable-static
+ oh-autobuild
+ if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \
+ oh-autobuild -T check; \
+ fi
+ touch $@
+
+install: build
+ oh-autoinstall
+ rm dest/usr/lib/$(OPK_HOST_ARCH)/*.la
+ oh-fixperms
+ oh-strip
+ oh-installfiles
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..bf7cf50
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+flac (1.3.0-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pj@pehjota.net> Fri, 20 Jun 2014 18:02:59 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..62da3ab
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Build-Depends: opkhelper-3.0, libogg-dev
+Homepage: https://www.xiph.org/flac/
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..f169b7d
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,18 @@
+# Upstream only distributes xz-compressed archives, which opkbuild doesn't
+# support. So we repack with gzip compression.
+
+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.gz
+
+$(source_archive):
+ wget -c '$(upstream_url)'
+ printf '$(source_md5sum) $(upstream_archive)' | md5sum -c -
+ unxz -c '$(upstream_archive)' | tar -x
+ rm -f '$(upstream_archive)' '$(upstream_archive).asc'
+ tar -czf '$(source_archive)' \
+ $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM)
+ mv $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM) src
+
+source: $(source_archive)