blob: f39c1c117adc2d9445da618f8e2a8f659819e750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: Behnam Lal <dev at behnamlal dot xyz>
# Contributor: Daniele Basso <daniele05 dot bass at gmail dot com>
# Contributor: Zanny <lordzanny@gmail.com>
pkgname=oda-file-converter
pkgver=25.7
pkgrel=1
pkgdesc="Converts files between the .dwg and .dxf file formats"
arch=('x86_64')
url="https://www.opendesign.com/guestfiles/oda_file_converter"
license=('custom')
conflicts=('teigha-file-converter')
replaces=('teigha-file-converter')
depends=('qt5-base' 'hicolor-icon-theme')
source=('https://download.opendesign.com/guestfiles/Demo/ODAFileConverter_QT6_lnxX64_8.3dll_25.7.deb'
'oda-file-converter'
'oda-file-converter.desktop')
md5sums=('99b9063c6a3999ecf2ebb335fa629916'
'9c4ac254a0fc8bbe099bc938f236ee64'
'cf41b2da616f6d7b124cba80f644ecbe')
_ogname='ODAFileConverter'
package() {
tar xJf 'data.tar.xz'
install -Dm755 "$srcdir/usr/bin/${_ogname}_$pkgver.0.0/$_ogname" "$pkgdir/opt/$pkgname/$pkgname"
for ext in '*.tx' '*.so'; do
for file in "$srcdir/usr/bin/${_ogname}_$pkgver.0.0/$ext"; do
install -m644 $file "$pkgdir/opt/$pkgname/"
done
done
install -Dm755 "$srcdir/$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dm644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
for res in '16x16' '32x32' '64x64' '128x128'; do
install -Dm644 "$srcdir/usr/share/icons/hicolor/$res/apps/$_ogname.png" "$pkgdir/usr/share/icons/hicolor/$res/apps/$pkgname.png"
done
# Freecad auto-detects Teigha by the "TeighaFileConverter" name
ln -s "/usr/bin/$pkgname" "$pkgdir/usr/bin/TeighaFileConverter"
}
|