summaryrefslogtreecommitdiffstats
path: root/libogg/MAKEPKG
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/MAKEPKG
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'libogg/MAKEPKG')
-rw-r--r--libogg/MAKEPKG33
1 files changed, 33 insertions, 0 deletions
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