Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
9d941d47
Commit
9d941d47
authored
1 year ago
by
alice
Browse files
Options
Downloads
Patches
Plain Diff
community/ffmpeg5: conditionalise libjxl
parent
d8303b26
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
community/ffmpeg5/APKBUILD
+11
-3
11 additions, 3 deletions
community/ffmpeg5/APKBUILD
with
11 additions
and
3 deletions
community/ffmpeg5/APKBUILD
+
11
−
3
View file @
9d941d47
...
...
@@ -4,7 +4,7 @@
# Maintainer: psykose <alice@ayaya.dev>
pkgname
=
ffmpeg5
pkgver
=
5.1.3
pkgrel
=
1
pkgrel
=
2
pkgdesc
=
"Complete and free Internet live audio and video broadcasting solution for Linux/Unix"
url
=
"https://ffmpeg.org/"
arch
=
"all"
...
...
@@ -24,7 +24,6 @@ makedepends="
lame-dev
libass-dev
libdrm-dev
libjxl-dev
librist-dev
libsrt-dev
libssh-dev
...
...
@@ -171,6 +170,15 @@ x86|armhf|armv7)
_svt_av1
=
"--enable-libsvtav1"
esac
case
"
$CARCH
"
in
s390x
)
;;
*
)
makedepends
=
"
$makedepends
libjxl-dev"
_jxl
=
"--enable-libjxl"
;;
esac
build
()
{
case
"
$CARCH
"
in
x86
)
local
asm
=
"--disable-asm"
;;
...
...
@@ -192,7 +200,6 @@ build() {
--enable-libfontconfig
\
--enable-libfreetype
\
--enable-libfribidi
\
--enable-libjxl
\
--enable-libmp3lame
\
--enable-libopus
\
--enable-libpulse
\
...
...
@@ -221,6 +228,7 @@ build() {
--enable-vulkan
\
--optflags
=
"-O2"
\
$asm
\
$_jxl
\
$_svt_av1
make
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment