Package Details: freedownloadmanager 6.25.2.6046-2

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: 38
Popularity: 1.56
First Submitted: 2020-01-21 11:41 (UTC)
Last Updated: 2025-02-07 17:16 (UTC)

Latest Comments

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

robertomorrison commented on 2025-02-20 22:22 (UTC)

The icon is not working anymore as it can't be found. Either don't change the .desktop file or link/copy the icon to the icons directory:

install -dm755 "$pkgdir/usr/share/icons/"
ln -sv "/opt/$pkgname/icon.png" "$pkgdir/usr/share/icons/freedownloadmanager.png"

rizwan486 commented on 2025-02-07 17:17 (UTC)

@robertomorrison Thanks for the fix. I just added it.

robertomorrison commented on 2025-02-06 20:36 (UTC) (edited on 2025-02-06 20:36 (UTC) by robertomorrison)

please consider adding StartupWMClass=fdm to the .desktop file, so the icon will show, even after opening the application.

julianmb commented on 2025-01-22 13:08 (UTC) (edited on 2025-01-27 13:45 (UTC) by julianmb)

I made a hook to fix the icon automatically after every update, based on @mmtech2012 comment:

# /etc/pacman.d/hooks/FDM.hook
[Trigger]
Operation = Upgrade
Type = Package
Target = freedownloadmanager

[Action]
Description = Fixing FMD icon
When = PostTransaction
Exec = /usr/bin/sed -i 's|^Icon=.*$|Icon=/opt/freedownloadmanager/icon.png|' /usr/share/applications/freedownloadmanager.desktop

Rizwan485 consider adding the command to the package() to fix it automatially without a hook

MareDevi commented on 2025-01-22 11:42 (UTC)

the sha256sums value is wrong and should be updated

==> ERROR: One or more files did not pass the validity check!
error: failed to download sources for 'freedownloadmanager-6.25.2.6046-1':
error: packages failed to build: freedownloadmanager-6.25.2.6046-1

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