-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 FIX: Correct packages in makedepends to depends array
On branch main - Changes to be committed: - modified: .SRCINFO - modified: PKGBUILD
- Loading branch information
1 parent
85e8f7b
commit 5cfad6b
Showing
2 changed files
with
20 additions
and
23 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,16 +1,16 @@ | ||
#!/bin/bash | ||
|
||
# Created from the original package by Fabio 'Lolix' Loli <[email protected]> -> https://github.com/FabioLolix, Lukas Fleischer <[email protected]> and Alexey Yakovenko <[email protected]> | ||
# Created from original package by Fabio 'Lolix' Loli <[email protected]> -> https://github.com/FabioLolix, Lukas Fleischer <[email protected]> and Alexey Yakovenko <[email protected]> | ||
|
||
# Disable various shellcheck rules that produce false positives in this file. | ||
# Repository rules should be added to the .shellcheckrc file located in the | ||
# Repository rules should be added to.shellcheckrc file located in | ||
# repository root directory, see https://github.com/koalaman/shellcheck/wiki | ||
# and https://archiv8.github.io for further information. | ||
# shellcheck disable=SC2034,SC2154 | ||
# [ToDo]: Add files: User documentation | ||
# [ToDo]: Add files: Tooling | ||
# [FixMe]: Namcap warnings and errors | ||
# [FixMe]: Build Failure | ||
# [Fixed]: Build Failure | ||
|
||
# Maintainer: Ross Clark <[email protected]> | ||
# Contributor: Ross Clark <[email protected]> | ||
|
@@ -29,32 +29,30 @@ license=( | |
depends=( | ||
# Official Arch Linux repositories | ||
"alsa-lib" | ||
"jansson" | ||
"ffmpeg4.4" | ||
"flac" | ||
"gtk3" | ||
"jansson" | ||
"libcddb" | ||
"libcdio" | ||
"libdispatch" | ||
"libmad" | ||
"libsamplerate" | ||
"libvorbis" | ||
"libzip" | ||
"mpg123" | ||
"opusfile" | ||
) | ||
makedepends=( | ||
|
||
# Official Arch Linux repositories | ||
"clang" | ||
"curl" | ||
"faad2" | ||
"ffmpeg4.4" | ||
"flac" | ||
"imlib2" | ||
"intltool" | ||
"libcdio" | ||
"libmad" | ||
"libpulse" | ||
"libsamplerate" | ||
"libsndfile" | ||
"libvorbis" | ||
"libx11" | ||
"libzip" | ||
"mpg123" | ||
"pkgconfig" | ||
"wavpack" | ||
"yasm" | ||
|