-
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.
🚿 CHORE: Tidy file and add link to TODO.md
- Tidy PKGBUILD: - Quote contents of "arch" array and list as column - Add link from PKGBUILD file to the to do list on GitHub - Bump pkgrel field to 4 in order to trigger an upgrade - Regenerate .SRCINFO to reflect changes On branch main - Changes to be committed: - modified: .SRCINFO - modified: PKGBUILD
- Loading branch information
1 parent
35662fa
commit e2d2063
Showing
2 changed files
with
14 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 |
---|---|---|
|
@@ -9,17 +9,25 @@ | |
# shellcheck disable=SC2034,SC2154 | ||
# [ToDo]: Add files: User documentation | ||
# [ToDo]: Add files: Tooling | ||
# [FixMe]: Namcap warnings and errors | ||
# [FixMe]: Namcap warnings and errors: | ||
# See https://github.com/Archiv8/deadbeef/TODO.md for further | ||
# information | ||
# [Fixed]: Build Failure | ||
|
||
# Maintainer: Ross Clark <[email protected]> | ||
# Contributor: Ross Clark <[email protected]> | ||
|
||
pkgname=deadbeef | ||
pkgver=1.9.2 | ||
pkgrel=3 | ||
pkgrel=4 | ||
pkgdesc="Modular GTK audio player for GNU/Linux" | ||
arch=(x86_64 i686 pentium4 arm armv6h armv7h aarch64) | ||
arch=("x86_64" | ||
"i686" | ||
"pentium4" | ||
"arm" | ||
"armv6h" | ||
"armv7h" | ||
"aarch64") | ||
url="https://deadbeef.sourceforge.io/" | ||
license=( | ||
"GPL2" | ||
|