summaryrefslogtreecommitdiffstats
path: root/libogg
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /libogg
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'libogg')
-rw-r--r--libogg/.footprint15
-rw-r--r--libogg/.signature6
-rw-r--r--libogg/MAKEPKG33
3 files changed, 54 insertions, 0 deletions
diff --git a/libogg/.footprint b/libogg/.footprint
new file mode 100644
index 0000000..36c54da
--- /dev/null
+++ b/libogg/.footprint
@@ -0,0 +1,15 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/include/
3drwxr-xr-x root/root usr/include/ogg/
4-rw-r--r-- root/root usr/include/ogg/config_types.h
5-rw-r--r-- root/root usr/include/ogg/ogg.h
6-rw-r--r-- root/root usr/include/ogg/os_types.h
7drwxr-xr-x root/root usr/lib/
8-rwxr-xr-x root/root usr/lib/libogg.so.0.8.6
9lrwxrwxrwx root/root usr/lib/libogg.so -> libogg.so.0.8.6
10lrwxrwxrwx root/root usr/lib/libogg.so.0 -> libogg.so.0.8.6
11drwxr-xr-x root/root usr/lib/pkgconfig/
12-rw-r--r-- root/root usr/lib/pkgconfig/ogg.pc
13drwxr-xr-x root/root usr/share/
14drwxr-xr-x root/root usr/share/aclocal/
15-rw-r--r-- root/root usr/share/aclocal/ogg.m4
diff --git a/libogg/.signature b/libogg/.signature
new file mode 100644
index 0000000..c73321b
--- /dev/null
+++ b/libogg/.signature
@@ -0,0 +1,6 @@
1untrusted comment: verify with zorz.pub
2RWTZ9IduCSQ/mNNY4IAuLMqHGIg/aXIYBFmMoUnC+ymgT+iuaFEmu6STLLawTPiHq0AvQAazElbR3vzdgVmIQOx6vzS0zaRQfwA=
3
4SHA256 (MAKEPKG) = b108e7904393c3425506648c55f6171532d91377c614b63ec2c289f6ef346da5
5SHA256 (.footprint) = 3a969f2f7dfb55730287686f665e1fc2d0b829fd11ae8c14e69b2580a1f77317
6SHA256 (libogg-1.3.6.tar.xz) = 5c8253428e181840cd20d41f3ca16557a9cc04bad4a3d04cce84808677fa1061
diff --git a/libogg/MAKEPKG b/libogg/MAKEPKG
new file mode 100644
index 0000000..f778d7e
--- /dev/null
+++ b/libogg/MAKEPKG
@@ -0,0 +1,33 @@
1#!/bin/mkpkg
2# description: Ogg bitstream and framing library
3# url: https://www.xiph.org/ogg
4
5name=libogg
6version=1.3.6
7release=1
8depends=()
9makedeps=()
10source=(https://downloads.xiph.org/releases/ogg/$name-$version.tar.xz)
11sha256sums=(
12 "5c8253428e181840cd20d41f3ca16557a9cc04bad4a3d04cce84808677fa1061"
13)
14
15build() {
16 cd $name-$version
17 CONFIG_SHELL=/bin/bash ./configure \
18 --prefix=/usr \
19 --disable-static
20 make
21 make DESTDIR=$PKG install
22
23 rm -f $PKG/usr/lib/libogg.la
24 rm -rf ${PKG}/usr/share/doc
25}
26
27signify() {
28 untrusted comment: public key
29 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
30}
31
32# vim: filetype=sh
33