Package Details: front-panel-designer-eu 6.3.6-1

Git Clone URL: https://aur.archlinux.org/front-panel-designer-eu.git (read-only, click to copy)
Package Base: front-panel-designer-eu
Description: Free CAD software for front panel design
Upstream URL: http://www.schaeffer-ag.de/en/
Licenses: custom
Submitter: kuon
Maintainer: kuon
Last Packager: kuon
Votes: 1
Popularity: 0.000000
First Submitted: 2019-03-26 16:21 (UTC)
Last Updated: 2023-10-13 22:52 (UTC)

Dependencies (2)

Required by (0)

Sources (0)

Latest Comments

1 2 Next › Last »

kuon commented on 2023-10-13 22:53 (UTC)

It should be fixed now.

kuon commented on 2023-10-08 01:00 (UTC)

There seem to be a problem with the upstream server.

I will wait a bit and see where the package ends as it is currently offline.

Thermionic_Idler commented on 2023-09-23 14:24 (UTC) (edited on 2023-09-23 14:28 (UTC) by Thermionic_Idler)

Hi, I keep getting this message when trying to install using ysy:

(==> Making package: front-panel-designer-eu 6.3.6-1 (Sat 23 Sep 2023 15:07:44 BST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found FrontDesign-EU-6.3.6-amd64.AppImage
  -> Found front-panel-express-eu.desktop
==> Validating source_x86_64 files with md5sums...
    FrontDesign-EU-6.3.6-amd64.AppImage ... FAILED
    front-panel-express-eu.desktop ... Passed
==> ERROR: One or more files did not pass the validity check!
 -> error making: front-panel-designer-eu-exit status 1

not sure if I'm doing anything wrong or if the package needs attention?

mosgerila commented on 2023-06-26 09:06 (UTC)

Need update. Current version is 6.3.6

mosgerila commented on 2022-01-03 03:06 (UTC)

Need update. Current version is 6.35

kuon commented on 2021-11-09 01:51 (UTC)

I was missing the SOURCE_DATE_EPOCH trick.

I applied your PKGBUILD.

Thanks a lot for the help.

harry71 commented on 2021-11-09 00:05 (UTC)

This PKGBUILD works on my system. Also I change the version from front-panel-designer-eu to 6.3.4

# Maintainer: Nicolas Goy <kuon@goyman.com>

pkgname=front-panel-designer-eu
pkgver=6.3.4
pkgrel=1
epoch=
pkgdesc="Free CAD software for front panel design"
arch=("any")
url="http://www.schaeffer-ag.de/en/"
license=('custom')
groups=()
depends=(libpng12)
makedepends=(appimagetool-bin)
options=(!strip)
source_x86_64=(
"https://assets.schaeffer-ag.de/fpd/Version-$pkgver/FrontDesign-EU-$pkgver-amd64.AppImage"
"front-panel-express-eu.desktop")
md5sums_x86_64=("024320be1126d70b5e7711a10e7da762" "d34b7ed5d87a206fe8b50fd4a8f8e167")
noextract=("FrontDesign-EU-$pkgver-amd64.AppImage")


prepare() {
    rm FrontDesign-EU-$pkgver-amd64.AppImage
    cp -L ../FrontDesign-EU-$pkgver-amd64.AppImage . 
}

build() {
    chmod a+x FrontDesign-EU-$pkgver-amd64.AppImage
    rm -rf tmp
    mkdir tmp
    cd tmp
    ../FrontDesign-EU-$pkgver-amd64.AppImage --appimage-extract

    # fix AppImage 
    rm squashfs-root/usr/lib/libgmodule-2.0.so.0

    # save and unset SOURCE_DATE_EPOCH for appimagetool
    _SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH
    unset SOURCE_DATE_EPOCH

    appimagetool squashfs-root ../FrontDesign-EU-$pkgver-amd64.AppImage

    # restore SOURCE_DATE_EPOCH
    export SOURCE_DATE_EPOCH=$_SOURCE_DATE_EPOCH
}

package() {
  install -Dm 755 \
       "$srcdir/FrontDesign-EU-$pkgver-amd64.AppImage" \
       "$pkgdir/opt/FrontDesignEU/FrontDesignEU.AppImage"

  mkdir -p "$pkgdir/usr/bin"
  ln -s "/opt/FrontDesignEU/FrontDesignEU.AppImage" "$pkgdir/usr/bin/FrontDesignEU"

  install -Dm 644 \
      "$srcdir/front-panel-express-eu.desktop" \
      "$pkgdir/usr/share/applications/front-panel-express-eu.desktop"
}

kuon commented on 2021-11-06 23:28 (UTC)

I tried to make a PKGBUILD that patch the AppImage, but I was unable to make appimagetool work inside PKGBUILD.

kuon commented on 2021-10-27 22:44 (UTC)

I do not have time right now to look into it, but if you provide a PKGBUILD patch, I'll apply it. Or I can give you maintainer.

harry71 commented on 2021-10-27 22:42 (UTC) (edited on 2021-10-27 22:44 (UTC) by harry71)

With the current glib2 2.70.0 a get the error "symbol lookup error: /usr/lib/libgio-2.0.so.0: undefined symbol: g_module_open_full"

If I remove squashfs-root/usr/lib/libgmodule-2.0.so.0 from the AppImage, it works.

wget https://assets.schaeffer-ag.de/fpd/Version-6.3.3/FrontDesign-EU-6.3.3-amd64.AppImage
chmod a+x FrontDesign-EU-6.3.3-amd64.AppImage
mkdir tmp
cd tmp
../FrontDesign-EU-6.3.3-amd64.AppImage --appimage-extract
rm squashfs-root/usr/lib/libgmodule-2.0.so.0
appimagetool squashfs-root ../FrontDesign-EU-6.3.3-amd64.AppImage