Update package version to 4.1

This commit is contained in:
2025-09-13 11:57:25 +03:00
parent cb8197916f
commit df54a00dd5
2 changed files with 11 additions and 9 deletions
+10 -7
View File
@@ -10,24 +10,27 @@ FILENAME="${DOWNLOAD##*/}"
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE"
# Fix Cmake 4.0+ issue
sed -r -i '/cmake_policy.*(0025|0054)/d' source/CMakeLists.txt
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
mkdir x265-build
cd x265-build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DGIT_ARCHETYPE=1 -Wno-dev ../source
make
cmake -B x265-build -DCMAKE_INSTALL_PREFIX=/usr -DGIT_ARCHETYPE=1 -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -Wno-dev source
cmake --build x265-build
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
cd x265-build
make DESTDIR="$BPM_OUTPUT" install
DESTDIR="$BPM_OUTPUT" cmake --install x265-build
# Remove static library
rm -v "$BPM_OUTPUT"/usr/lib/libx265.a
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/x265/COPYING
}