diff options
| author | zorz <zorz@krypt.sh> | 2026-05-05 18:29:35 +0300 |
|---|---|---|
| committer | zorz <zorz@krypt.sh> | 2026-05-05 18:29:35 +0300 |
| commit | 3ee93968e10126adc7dad5c8872f0170c3421e13 (patch) | |
| tree | bcac8daa62b6c9a94a48dae87f5d3f6de1985bba /libogg | |
| parent | 936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff) | |
| download | zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz | |
various obsolette
Diffstat (limited to 'libogg')
| -rw-r--r-- | libogg/.footprint | 15 | ||||
| -rw-r--r-- | libogg/.signature | 6 | ||||
| -rw-r--r-- | libogg/MAKEPKG | 33 |
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 @@ | |||
| 1 | drwxr-xr-x root/root usr/ | ||
| 2 | drwxr-xr-x root/root usr/include/ | ||
| 3 | drwxr-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 | ||
| 7 | drwxr-xr-x root/root usr/lib/ | ||
| 8 | -rwxr-xr-x root/root usr/lib/libogg.so.0.8.6 | ||
| 9 | lrwxrwxrwx root/root usr/lib/libogg.so -> libogg.so.0.8.6 | ||
| 10 | lrwxrwxrwx root/root usr/lib/libogg.so.0 -> libogg.so.0.8.6 | ||
| 11 | drwxr-xr-x root/root usr/lib/pkgconfig/ | ||
| 12 | -rw-r--r-- root/root usr/lib/pkgconfig/ogg.pc | ||
| 13 | drwxr-xr-x root/root usr/share/ | ||
| 14 | drwxr-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 @@ | |||
| 1 | untrusted comment: verify with zorz.pub | ||
| 2 | RWTZ9IduCSQ/mNNY4IAuLMqHGIg/aXIYBFmMoUnC+ymgT+iuaFEmu6STLLawTPiHq0AvQAazElbR3vzdgVmIQOx6vzS0zaRQfwA= | ||
| 3 | |||
| 4 | SHA256 (MAKEPKG) = b108e7904393c3425506648c55f6171532d91377c614b63ec2c289f6ef346da5 | ||
| 5 | SHA256 (.footprint) = 3a969f2f7dfb55730287686f665e1fc2d0b829fd11ae8c14e69b2580a1f77317 | ||
| 6 | SHA256 (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 | |||
| 5 | name=libogg | ||
| 6 | version=1.3.6 | ||
| 7 | release=1 | ||
| 8 | depends=() | ||
| 9 | makedeps=() | ||
| 10 | source=(https://downloads.xiph.org/releases/ogg/$name-$version.tar.xz) | ||
| 11 | sha256sums=( | ||
| 12 | "5c8253428e181840cd20d41f3ca16557a9cc04bad4a3d04cce84808677fa1061" | ||
| 13 | ) | ||
| 14 | |||
| 15 | build() { | ||
| 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 | |||
| 27 | signify() { | ||
| 28 | untrusted comment: public key | ||
| 29 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 30 | } | ||
| 31 | |||
| 32 | # vim: filetype=sh | ||
| 33 | |||