Package Details: freedownloadmanager 6.25.2.6046-1

Git Clone URL: https://aur.archlinux.org/freedownloadmanager.git (read-only, click to copy)
Package Base: freedownloadmanager
Description: FDM is a powerful modern download accelerator and organizer.
Upstream URL: https://www.freedownloadmanager.org/
Keywords: fdm freedownloadmanager
Licenses: Freeware
Submitter: rizwan486
Maintainer: rizwan486
Last Packager: rizwan486
Votes: 37
Popularity: 1.14
First Submitted: 2020-01-21 11:41 (UTC)
Last Updated: 2025-01-21 10:38 (UTC)

Latest Comments

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

rizwan486 commented on 2025-01-18 05:04 (UTC)

@andwati Thanks for findings. It helped me to fix the package.

andwati commented on 2025-01-17 21:05 (UTC) (edited on 2025-01-17 21:06 (UTC) by andwati)

@rizwan486 The package is broken again. So I tried to build it manually but it still failed. I realized that on the PKGBUILD the correct tar command is commented out:

prepare() {
    mkdir -p "$pkgname-$pkgver"
    # tar -xvf data.tar.xz -C "$pkgname-$pkgver"
    tar --use-compress-program=unzstd -xvf data.tar.zst -C "$pkgname-$pkgver"
}

So I switched to this:

prepare() {
    mkdir -p "$pkgname-$pkgver"
    tar -xvf data.tar.xz -C "$pkgname-$pkgver"
    # tar --use-compress-program=unzstd -xvf data.tar.zst -C "$pkgname-$pkgver"
}

The checksums are also outdated so the build failed. So I fixed it with the following:

makepkg -g >> PKGBUILD && makepkg -si

andwati commented on 2024-09-20 06:30 (UTC)

@rizwan486 it now works

rizwan486 commented on 2024-09-20 05:02 (UTC)

@andwat Package updated. Please try now.

andwati commented on 2024-09-19 20:56 (UTC)

I use paru but I have to manually intervene for this. Clone the package locally and generate the hasshes for remote source and build.

git clone https://aur.archlinux.org/freedownloadmanager.git

makepkg -g >> PKGBUILD && makepkg -si

Retro_Gamer commented on 2024-07-09 14:42 (UTC) (edited on 2024-07-09 14:43 (UTC) by Retro_Gamer)

Can we get the checksum error fixed please? OR remove the check all together?

mmtech2012 commented on 2024-06-28 18:43 (UTC) (edited on 2024-06-28 18:45 (UTC) by mmtech2012)

Hi , I want to mention I run it and It's totaly good. just the .desktop file point to wrong dir for the icon. two way to solve this:

  1. Rename and move the icon file /opt/freedownloadmanager/icon.png to /usr/share/icons/hicolor/256x256/apps/freedownloadmanager.png

  2. edit the .desktop file which in this case located in /usr/share/applications/freedownloadmanager.desktop which line contain icon=freedownloadmanager become icon=/opt/freedownloadmanager/icon.png

thank you

RAMChYLD commented on 2024-05-20 09:57 (UTC)

Hi, just a notice that sha256sum is broken again today.

alitajelsir commented on 2024-05-16 08:28 (UTC) (edited on 2024-05-16 08:28 (UTC) by alitajelsir)

@rizwan486,

I think gst-plugins-base should be added as a dependency. The following error occurs (while launching the application) without it:

QSqlQuery::value: not positioned on a valid record
could not load multimedia backend "gstreamer"
QtMultimedia is not currently supported on this platform or compiler.

Nriver commented on 2024-03-20 07:33 (UTC) (edited on 2024-03-20 07:34 (UTC) by Nriver)

To address the sha256sum issue, you have two options:

  • You can bypass the integrity check:
yay -S freedownloadmanager --mflags --skipinteg
  • Alternatively, you can update the sha256sum in the PKGBUILD file:
cd ~/.cache/yay/freedownloadmanager/
sha256sum freedownloadmanager.deb | awk '{print $1}' | xargs -I{} sed -i 's/sha256sums=(".*")/sha256sums=("{}")/' PKGBUILD
makepkg -si