Package Details: flacon 13.0.1-1

Git Clone URL: https://aur.archlinux.org/flacon.git (read-only, click to copy)
Package Base: flacon
Description: An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks.
Upstream URL: https://github.com/flacon/flacon
Keywords: aac ape audio c-plus-plus cd convert cue cuesheet encoder flac flacon mp3 ogg ogg-vorbis wav
Licenses: LGPL-2.1-or-later
Submitter: overmind88
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 165
Popularity: 0.32
First Submitted: 2009-10-08 21:07 (UTC)
Last Updated: 2026-07-12 13:30 (UTC)

Latest Comments

1 2 3 4 5 6 .. 8 Next › Last »

FabioLolix commented on 2026-07-14 18:08 (UTC)

I was able to replicate, I'll open a ticket on github later today

ludvick commented on 2026-07-13 04:05 (UTC) (edited on 2026-07-13 08:31 (UTC) by ludvick)

Flacon 13.0.1 is stuck in English on my Arch. Even though the translation files are present in /usr/share/flacon/translations, the application fails to load them and ignores the system locale (e.g., pl_PL.UTF-8).

After debugging, it seems that QTranslator is unable to pick up the files in the standard location after the transition to Qt6. Can we investigate why the localization mechanism is failing in the current version?

eniac commented on 2026-06-21 15:00 (UTC)

This pkgbuild just needs setting pkgver to 13.0.1 to update to the new flacon version, it works fine for me.

FabioLolix commented on 2023-02-06 17:07 (UTC)

Also I usually prefer git cloning so I share sources between stable and VCS pkgbuilds

FabioLolix commented on 2023-02-06 17:06 (UTC)

Yeah seen that, I'm still having issues passing test in clean chroot while dirty building works. Build type None or Relwithdebug if preferred by guidelines, also creating build dir in prepare() instead of build()

kyndair commented on 2023-02-06 17:03 (UTC)

The below is a suggested change as it simplifies and includes sha256sum Also for the latest release the release notes state metaflac, mp3gain, vorbisgain and wavgain are no longer needed.


pkgname=flacon
pkgver=10.0.0
pkgrel=1
pkgdesc="An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks."
arch=(x86_64 i686 aarch64)
url="https://flacon.github.io/"
license=(LGPL2.1)
depends=(hicolor-icon-theme qt5-base uchardet taglib)
makedepends=(git cmake icu qt5-tools)
optdepends=('flac: For FLAC support'
            'lame: For MP3 support'
            'mac: For APE support'
            'opus-tools: For OPUS support'
            'sox: For SoX support'
            'ttaenc: For TrueAudio support'
            'vorbis-tools: For OGG support'
            'wavpack: For WavPack support'
)
source=("https://github.com/flacon/flacon/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('f08bc2744e1d27de810e288dc20fdf2bf7149a33c695a677ab8bec075bcd7675')

build() {
  mkdir -p "${srcdir}/flacon-${pkgver}/build"
  cd "${srcdir}/flacon-${pkgver}/build"
  cmake ..  \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd "${srcdir}/flacon-${pkgver}/build"
  make DESTDIR="${pkgdir}" install
}

E3LDDfrK commented on 2020-12-11 19:02 (UTC)

This program is pretty great. Very intuitive.

joeleg commented on 2020-10-19 08:28 (UTC)

Can we change "mkdir" to "mkdir -p", in order to allow for repeated building within the same directory

Kewl commented on 2020-07-27 00:12 (UTC)

you may add sox as an optional dependency

generaleramon commented on 2020-06-17 06:55 (UTC) (edited on 2020-06-17 06:55 (UTC) by generaleramon)

it compile on aarch64, can you add 'aarch64' in the arch section of the PKGBUILD?