-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docker): update to Alpine 3.19 (#502)
* update to Alpine 3.19 check out utfcpp (taglib2 dependency) from git, because Alpine 3.19 packages incompatible utfcpp 4.0, resulting in build failure * use utfcpp package and specify the include path
- Loading branch information
1 parent
14c34c6
commit 0d7d92d
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Contributor: Leo <[email protected]> | ||
# Maintainer: Natanael Copa <[email protected]> | ||
pkgname=taglib2 | ||
pkgver=2.0 | ||
pkgver=2.0.1 | ||
pkgrel=0 | ||
pkgdesc="Library for reading and editing metadata of several popular audio formats" | ||
url="https://taglib.github.io/" | ||
|
@@ -30,10 +30,11 @@ build() { | |
-DCMAKE_BUILD_TYPE=MinSizeRel \ | ||
-DWITH_ZLIB=ON \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
-DBUILD_EXAMPLES=ON \ | ||
-DBUILD_EXAMPLES=OFF \ | ||
-DBUILD_TESTING="$(want_check && echo ON || echo OFF)" \ | ||
-DVISIBILITY_HIDDEN=ON | ||
cmake --build build | ||
CPLUS_INCLUDE_PATH="/usr/include/utf8cpp" \ | ||
cmake --build build | ||
} | ||
|
||
check() { | ||
|
@@ -51,5 +52,5 @@ _lib() { | |
} | ||
|
||
sha512sums=" | ||
099d02b2eab033f5702a8cb03e70752d7523c6f8c2f3eebdd0bcd939eafbdca3f2a6c82452983904b5822cfa45f2707ed866c3419508df9d43bf5c0b3a476f6c taglib-2.0.tar.gz | ||
25ee89293a96d7f8dca6276f822bdaef01fd98503b78c20ffeac8e1d9821de7273a5127146aa798d304c6a995cb2b7229a205aff1cc261b5d4fa9e499dda0439 taglib-2.0.1.tar.gz | ||
" |