2025-02-22 19:49:48 +00:00
|
|
|
# Maintainer: nezu <nezu@nezu.cc>
|
2025-02-23 00:06:40 +00:00
|
|
|
pkgname=lcn-pro-patched
|
|
|
|
_pkgname=lcn-pro
|
2025-02-22 19:49:48 +00:00
|
|
|
pkgver=6.9.5
|
|
|
|
pkgrel=1
|
2025-02-23 00:06:40 +00:00
|
|
|
pkgdesc="PC program for setting up LCN modules - patched"
|
2025-02-22 19:49:48 +00:00
|
|
|
arch=('x86_64')
|
|
|
|
url="https://www.lcn.eu/en/service/software-2/"
|
|
|
|
license=('custom')
|
|
|
|
options=(!debug !strip)
|
|
|
|
depends=(wine)
|
|
|
|
makedepends=(gendesk icoutils 7zip)
|
2025-02-23 00:06:40 +00:00
|
|
|
provides=('lcn-pro')
|
2025-02-22 19:49:48 +00:00
|
|
|
conflicts=('lcn-pro')
|
2025-02-23 00:06:40 +00:00
|
|
|
_url="https://vaclive.party/software/lcn-pro/releases/download/${pkgver}"
|
2025-02-22 19:49:48 +00:00
|
|
|
source=(
|
2025-02-23 00:06:40 +00:00
|
|
|
"LCN-PRO-${pkgver}_Setup.exe::$_url/LCN-PRO-${pkgver}_Setup.exe"
|
|
|
|
"LCN-PRO-${pkgver}_Setup.exe.asc::$_url/LCN-PRO-${pkgver}_Setup.exe.asc"
|
|
|
|
"LCNPRO-${pkgver}_patched.exe::$_url/LCNPRO_patched.exe"
|
|
|
|
"LCNPRO-${pkgver}_patched.exe.asc::$_url/LCNPRO_patched.exe.asc"
|
2025-02-22 19:49:48 +00:00
|
|
|
"lcn-pro.sh"
|
|
|
|
)
|
2025-02-23 00:06:40 +00:00
|
|
|
sha256sums=('f3312db3848dbe29af0e015279570209e765b79780a7aec30a33c48dc10d9e3a'
|
|
|
|
'SKIP'
|
|
|
|
'4d0b356444afdb60399b4a7b959d8c8cfb76bade4af84bad037576f78fe41219'
|
|
|
|
'SKIP'
|
|
|
|
'fe1761f84dee22e2c04f2ec4dfbf9fbfd850076295cf6889ac44d6a340b0b610')
|
|
|
|
validpgpkeys=('09BE40243217978201A0440E101BA3F4C612AA41') # nezu <nezu@nezu.cc>
|
2025-02-22 19:49:48 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
# extract the installer
|
|
|
|
7z x -y LCN-PRO-${pkgver}_Setup.exe -olcn-pro
|
|
|
|
|
|
|
|
# extract the icon out of the executable
|
|
|
|
wrestool -x -n MAINICON lcn-pro/LCNPRO.exe -o lcn-pro.ico
|
|
|
|
|
|
|
|
# get the highest quality PNG from the icon file
|
|
|
|
icotool -x lcn-pro.ico -i 1 -o lcn-pro.png
|
|
|
|
|
|
|
|
# generate a .desktop file
|
|
|
|
gendesk -f -n \
|
|
|
|
--name "LCN-PRO" \
|
2025-02-23 00:06:40 +00:00
|
|
|
--pkgname "$_pkgname" \
|
2025-02-22 19:49:48 +00:00
|
|
|
--pkgdesc "$pkgdesc" \
|
|
|
|
--exec lcn-pro \
|
|
|
|
--icon lcn-pro.png \
|
|
|
|
--categories "Utility;Network;HardwareSettings"
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2025-02-23 00:06:40 +00:00
|
|
|
install -d "$pkgdir"/usr/share/"$_pkgname"
|
|
|
|
cp -a lcn-pro/{*.dll,Data,locale} "$pkgdir"/usr/share/"$_pkgname"
|
2025-02-22 19:49:48 +00:00
|
|
|
find "$pkgdir"/usr/share -type f -exec chmod 644 "{}" \;
|
|
|
|
find "$pkgdir"/usr/share -type d -exec chmod 755 "{}" \;
|
2025-02-23 00:06:40 +00:00
|
|
|
install -Dm755 LCNPRO-${pkgver}_patched.exe "$pkgdir"/usr/share/"$_pkgname"/LCNPRO.exe
|
2025-02-22 19:49:48 +00:00
|
|
|
|
|
|
|
install -Dm755 lcn-pro.sh "$pkgdir"/usr/bin/lcn-pro
|
|
|
|
|
|
|
|
install -Dm644 lcn-pro.png "$pkgdir"/usr/share/pixmaps/lcn-pro.png
|
|
|
|
install -Dm644 lcn-pro.desktop "$pkgdir"/usr/share/applications/lcn-pro.desktop
|
|
|
|
}
|