diff options
| author | emmett1 <me@emmett1.my> | 2026-05-12 04:47:11 +0200 |
|---|---|---|
| committer | emmett1 <me@emmett1.my> | 2026-05-12 04:47:11 +0200 |
| commit | efd1dd4e240d7403777d6b91a0eee693df9b344c (patch) | |
| tree | 354e160829cb9717f2239fcf1a8e14cba57a9736 | |
| parent | 3e6175633aee0463cd8465e5af5d7756f641e87b (diff) | |
| parent | 69e60d0dffbf7cc5ad218fc5e635929ebe39b276 (diff) | |
| download | alicelinux-efd1dd4e240d7403777d6b91a0eee693df9b344c.tar.gz alicelinux-efd1dd4e240d7403777d6b91a0eee693df9b344c.zip | |
Merge pull request 'add: libflac 1.5.0' (#49) from ohnoes_ohnoes/alicelinux:libflac into main
Reviewed-on: https://codeberg.org/emmett1/alicelinux/pulls/49
| -rw-r--r-- | repos/extra/libflac/.checksum | 1 | ||||
| -rw-r--r-- | repos/extra/libflac/.files | 42 | ||||
| -rw-r--r-- | repos/extra/libflac/abuild | 19 | ||||
| -rw-r--r-- | repos/extra/libflac/depends | 1 |
4 files changed, 63 insertions, 0 deletions
diff --git a/repos/extra/libflac/.checksum b/repos/extra/libflac/.checksum new file mode 100644 index 00000000..749575f4 --- /dev/null +++ b/repos/extra/libflac/.checksum @@ -0,0 +1 @@ +2adca3cd8da4b577ebb9c12e73c91cf6f6a7feb7485b3f003853b82710bada84 flac-1.5.0.tar.xz diff --git a/repos/extra/libflac/.files b/repos/extra/libflac/.files new file mode 100644 index 00000000..cd698e1f --- /dev/null +++ b/repos/extra/libflac/.files @@ -0,0 +1,42 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/flac +-rwxr-xr-x root/root usr/bin/metaflac +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/FLAC++/ +-rw-r--r-- root/root usr/include/FLAC++/all.h +-rw-r--r-- root/root usr/include/FLAC++/decoder.h +-rw-r--r-- root/root usr/include/FLAC++/encoder.h +-rw-r--r-- root/root usr/include/FLAC++/export.h +-rw-r--r-- root/root usr/include/FLAC++/metadata.h +drwxr-xr-x root/root usr/include/FLAC/ +-rw-r--r-- root/root usr/include/FLAC/all.h +-rw-r--r-- root/root usr/include/FLAC/assert.h +-rw-r--r-- root/root usr/include/FLAC/callback.h +-rw-r--r-- root/root usr/include/FLAC/export.h +-rw-r--r-- root/root usr/include/FLAC/format.h +-rw-r--r-- root/root usr/include/FLAC/metadata.h +-rw-r--r-- root/root usr/include/FLAC/ordinals.h +-rw-r--r-- root/root usr/include/FLAC/stream_decoder.h +-rw-r--r-- root/root usr/include/FLAC/stream_encoder.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/cmake/ +drwxr-xr-x root/root usr/lib/cmake/FLAC/ +-rw-r--r-- root/root usr/lib/cmake/FLAC/flac-config-version.cmake +-rw-r--r-- root/root usr/lib/cmake/FLAC/flac-config.cmake +-rw-r--r-- root/root usr/lib/cmake/FLAC/targets-release.cmake +-rw-r--r-- root/root usr/lib/cmake/FLAC/targets.cmake +lrwxrwxrwx root/root usr/lib/libFLAC++.so -> libFLAC++.so.11 +lrwxrwxrwx root/root usr/lib/libFLAC++.so.11 -> libFLAC++.so.11.0.0 +-rwxr-xr-x root/root usr/lib/libFLAC++.so.11.0.0 +lrwxrwxrwx root/root usr/lib/libFLAC.so -> libFLAC.so.14 +lrwxrwxrwx root/root usr/lib/libFLAC.so.14 -> libFLAC.so.14.0.0 +-rwxr-xr-x root/root usr/lib/libFLAC.so.14.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/flac++.pc +-rw-r--r-- root/root usr/lib/pkgconfig/flac.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/flac.1.gz +-rw-r--r-- root/root usr/share/man/man1/metaflac.1.gz diff --git a/repos/extra/libflac/abuild b/repos/extra/libflac/abuild new file mode 100644 index 00000000..7b8d1f40 --- /dev/null +++ b/repos/extra/libflac/abuild @@ -0,0 +1,19 @@ +name=libflac +version=1.5.0 +release=1 +source=https://ftp.osuosl.org/pub/xiph/releases/flac/flac-$version.tar.xz + +build() { + cmake -B build \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_C_FLAGS_RELEASE="$CFLAGS" \ + -DCMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \ + -DBUILD_SHARED_LIBS=ON \ + -DBUILD_EXAMPLES=OFF \ + -DBUILD_TESTING=OFF \ + -Wno-dev + cmake --build build + DESTDIR=$PKG cmake --install build +} diff --git a/repos/extra/libflac/depends b/repos/extra/libflac/depends new file mode 100644 index 00000000..b6a6854a --- /dev/null +++ b/repos/extra/libflac/depends @@ -0,0 +1 @@ +libogg |