blob: 33e11fe1c576d5bdf574825c44b4ebbfb5a18240 (
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
|
# Maintainer: Matthias Mailänder <matthias at mailaender dot name>
# Contributor: Anton Kudelin <kudelin at protonmail dot com>
pkgname=openchrom
pkgver=1.5.0
pkgrel=4
pkgdesc="Visualization and analysis of mass spectrometric and chromatographic data"
arch=("x86_64")
url="https://openchrom.net/"
license=('EPL')
# Don't build from source as there are no tagged releases and the marketplace is missing.
source=("https://products.lablicate.com/openchrom/${pkgver}/openchrom-lablicate_linux.x86_64_${pkgver}.tar.gz"
"openchrom.desktop"
"openchrom.png")
# Avoid checksums, because minor release overwrite without change in versioning.
sha256sums=('SKIP'
'SKIP'
'SKIP')
depends=('org.freedesktop.secrets' 'webkit2gtk')
package() {
install -d "${pkgdir}/usr/lib/openchrom"
cp -r configuration features p2 plugins readme artifacts.xml openchrom openchrom.ini "${pkgdir}/usr/lib/openchrom"
install -d "${pkgdir}/usr/bin"
ln -s "/usr/lib/openchrom/openchrom" "${pkgdir}/usr/bin/openchrom"
install -Dm0644 "openchrom.desktop" "${pkgdir}/usr/share/applications/openchrom.desktop"
install -Dm0644 "openchrom.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/openchrom.png"
}
|