Skip to content

Commit

Permalink
🔧 FIX: Correct packages in makedepends to depends array
Browse files Browse the repository at this point in the history
On branch main
- Changes to be committed:
  - modified:   .SRCINFO
  - modified:   PKGBUILD
  • Loading branch information
rossclarkartist committed Oct 23, 2022
1 parent 85e8f7b commit 5cfad6b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 23 deletions.
19 changes: 9 additions & 10 deletions .SRCINFO
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pkgbase = deadbeef
pkgdesc = Modular GTK audio player for GNU/Linux
pkgver = 1.9.2
pkgrel = 1
pkgrel = 2
url = https://deadbeef.sourceforge.io/
arch = x86_64
arch = i686
Expand All @@ -16,29 +16,28 @@ pkgbase = deadbeef
makedepends = clang
makedepends = curl
makedepends = faad2
makedepends = ffmpeg4.4
makedepends = flac
makedepends = imlib2
makedepends = intltool
makedepends = libcdio
makedepends = libmad
makedepends = libpulse
makedepends = libsamplerate
makedepends = libsndfile
makedepends = libvorbis
makedepends = libx11
makedepends = libzip
makedepends = mpg123
makedepends = pkgconfig
makedepends = wavpack
makedepends = yasm
makedepends = zlib
depends = alsa-lib
depends = jansson
depends = ffmpeg4.4
depends = flac
depends = gtk3
depends = jansson
depends = libcddb
depends = libcdio
depends = libdispatch
depends = libmad
depends = libsamplerate
depends = libvorbis
depends = libzip
depends = mpg123
depends = opusfile
optdepends = alsa-oss: for OSS output plugin
optdepends = cdparanoia: for cd audio plugin
Expand Down
24 changes: 11 additions & 13 deletions PKGBUILD
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]>
Expand All @@ -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"
Expand Down

0 comments on commit 5cfad6b

Please sign in to comment.