summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Biermann <tbier@posteo.de>2022-10-30 10:49:18 +0000
committerTim Biermann <tbier@posteo.de>2022-10-30 10:49:18 +0000
commitfb3495e883ea4966bb5bfb267a36d33cfa5f4543 (patch)
tree39e7d3b7a731a7606f4f9ae37a7fe25977924180
parent4f46ff55798554e5e2adbf79b978ddfec8edbed7 (diff)
downloadcontrib-fb3495e883ea4966bb5bfb267a36d33cfa5f4543.tar.gz
contrib-fb3495e883ea4966bb5bfb267a36d33cfa5f4543.tar.xz
aom: initial commit, version 3.5.0
-rw-r--r--aom/.footprint23
-rw-r--r--aom/.signature5
-rw-r--r--aom/Pkgfile24
3 files changed, 52 insertions, 0 deletions
diff --git a/aom/.footprint b/aom/.footprint
new file mode 100644
index 000000000..fe8d7c1b4
--- /dev/null
+++ b/aom/.footprint
@@ -0,0 +1,23 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/aomdec
+-rwxr-xr-x root/root usr/bin/aomenc
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/aom/
+-rw-r--r-- root/root usr/include/aom/aom.h
+-rw-r--r-- root/root usr/include/aom/aom_codec.h
+-rw-r--r-- root/root usr/include/aom/aom_decoder.h
+-rw-r--r-- root/root usr/include/aom/aom_encoder.h
+-rw-r--r-- root/root usr/include/aom/aom_external_partition.h
+-rw-r--r-- root/root usr/include/aom/aom_frame_buffer.h
+-rw-r--r-- root/root usr/include/aom/aom_image.h
+-rw-r--r-- root/root usr/include/aom/aom_integer.h
+-rw-r--r-- root/root usr/include/aom/aomcx.h
+-rw-r--r-- root/root usr/include/aom/aomdx.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libaom.a
+lrwxrwxrwx root/root usr/lib/libaom.so -> libaom.so.3
+lrwxrwxrwx root/root usr/lib/libaom.so.3 -> libaom.so.3.5.0
+-rwxr-xr-x root/root usr/lib/libaom.so.3.5.0
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/aom.pc
diff --git a/aom/.signature b/aom/.signature
new file mode 100644
index 000000000..bdc0f6492
--- /dev/null
+++ b/aom/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/contrib.pub
+RWSagIOpLGJF3/cpEIwQ5G35aiSv7LfePc5juOdxmyGmfYo4D93Km53Z9qfKLdEdMito4KsO1JhtB2Zrrs5bL7b8fIa+hGEoVgA=
+SHA256 (Pkgfile) = 23d17e0927422ab5b130cc2e66a6e0fa044ef29eb22db4d08528770e98ad49a8
+SHA256 (.footprint) = 450ba99d47791247909f6b683e183e66edf798e9897406fc521725734e0c52c6
+SHA256 (libaom-3.5.0.tar.gz) = d37dbee372e2430a7efde813984ae6d78bdf1fc4080ebe32457c9115408b0738
diff --git a/aom/Pkgfile b/aom/Pkgfile
new file mode 100644
index 000000000..62f13d2b9
--- /dev/null
+++ b/aom/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Alliance for Open Media
+# URL: https://aomedia.org/
+# Maintainer: Tim Biermann, tbier at posteo dot de
+# Depends on: yasm
+
+name=aom
+version=3.5.0
+release=1
+source=(https://storage.googleapis.com/aom-releases/libaom-$version.tar.gz)
+
+build() {
+ cmake -S libaom-$version -B build -G Ninja \
+ -D CMAKE_INSTALL_PREFIX=/usr \
+ -D CMAKE_INSTALL_LIBDIR=lib \
+ -D CMAKE_BUILD_TYPE=Release \
+ -D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
+ -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
+ -D BUILD_SHARED_LIBS=1 \
+ -D ENABLE_TESTS=0 \
+ -Wno-dev
+
+ cmake --build build
+ DESTDIR=$PKG cmake --install build
+}

Generated by cgit