diff options
| author | emmett1 <me@emmett1.my> | 2026-06-16 05:09:12 +0200 |
|---|---|---|
| committer | emmett1 <me@emmett1.my> | 2026-06-16 05:09:12 +0200 |
| commit | 4b6556e6733b41bbdc72ea3270f364c8a0fc7f83 (patch) | |
| tree | b1d6b33c1db3f034a6266ffd11d5646c974ae9f4 | |
| parent | 6bc6acffdaa50f1e0a8876a64d803cfc0ecc8459 (diff) | |
| parent | 05b0d9ae0f6ff665a40714fcce04bc63f8a9ee73 (diff) | |
| download | alicelinux-4b6556e6733b41bbdc72ea3270f364c8a0fc7f83.tar.gz alicelinux-4b6556e6733b41bbdc72ea3270f364c8a0fc7f83.zip | |
Merge pull request '`libflac` and `mednafen` abuild recipe simplification' (#70) from ohnoes_ohnoes/alicelinux:libflac-and-mednafen into main
Reviewed-on: https://codeberg.org/emmett1/alicelinux/pulls/70
| -rw-r--r-- | repos/community/libflac/abuild | 19 | ||||
| -rw-r--r-- | repos/community/mednafen/abuild | 8 |
2 files changed, 4 insertions, 23 deletions
diff --git a/repos/community/libflac/abuild b/repos/community/libflac/abuild index 7b8d1f40..62ac61c7 100644 --- a/repos/community/libflac/abuild +++ b/repos/community/libflac/abuild @@ -1,19 +1,6 @@ name=libflac version=1.5.0 -release=1 +release=2 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 -} +build_type=cmake_build +build_opt="-DBUILD_SHARED_LIBS=ON -DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF" diff --git a/repos/community/mednafen/abuild b/repos/community/mednafen/abuild index 4be511fd..47f04965 100644 --- a/repos/community/mednafen/abuild +++ b/repos/community/mednafen/abuild @@ -1,10 +1,4 @@ name=mednafen version=1.32.1 -release=1 +release=2 source=https://mednafen.github.io/releases/files/$name-$version.tar.xz - -build() { - ./configure --prefix=/usr - make - make install DESTDIR=$PKG -} |