Package Details: flacon 11.3.0-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://flacon.github.io/
Keywords: aac ape audio c-plus-plus cd convert cue cuesheet encoder flac flacon mp3 ogg ogg-vorbis wav
Licenses: LGPL2.1
Submitter: overmind88
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 158
Popularity: 1.11
First Submitted: 2009-10-08 21:07 (UTC)
Last Updated: 2023-10-14 11:27 (UTC)

Dependencies (19)

Required by (0)

Sources (1)

Latest Comments

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

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?

BlueMacaw commented on 2019-01-29 07:32 (UTC)

This program is amazing! Way better then that lousy soundConverter! Why is it not among the official packages?

ValHue commented on 2018-05-03 16:41 (UTC)

@Andrenas, pkg-config belongs to the base-devel group. If you are installing packages since AUR you must install the base-devel group.

https://wiki.archlinux.org/index.php/Arch_User_Repository#Prerequisites

Andrenas commented on 2018-05-02 18:25 (UTC)

Hello.

The error happened because the "pkg-config" package was missing on my system.

Best Regards