34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
# Template for Marvin
|
|
pkgname=marvin
|
|
version=18.19.0
|
|
revision=1
|
|
noarch=yes
|
|
maintainer="Brenton Horne <brentonhorne77@gmail.com>"
|
|
homepage="https://chemaxon.com/products/marvin"
|
|
license="marvin"
|
|
depends="virtual?java-environment"
|
|
short_desc="Skeletal structure drawing program by ChemAxon"
|
|
only_for_archs="i686 x86_64"
|
|
repository=nonfree
|
|
restricted=yes
|
|
nostrip=yes
|
|
_filename="marvin_linux_$(echo $version | sed 's/.[0-9]*$//g').deb"
|
|
distfiles="https://dl.chemaxon.com/marvin/${version}/${_filename}"
|
|
checksum=f498405166821e6f2f8e75b1357c10fca9b1834cca5ca14d56c7921ed4fb5bcf
|
|
|
|
do_extract() {
|
|
ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${_filename}
|
|
tar xf data.tar.gz
|
|
}
|
|
|
|
do_install() {
|
|
cp -r opt ${DESTDIR}
|
|
mkdir -p ${DESTDIR}/usr/{bin,share/pixmaps}
|
|
ln -sf /opt/chemaxon/marvinsuite/.install4j/Marvin{Sketch,View}.png ${DESTDIR}/usr/share/pixmaps/
|
|
|
|
vinstall ${FILESDIR}/MarvinSketch.desktop 755 usr/share/applications
|
|
vinstall ${FILESDIR}/MarvinView.desktop 755 usr/share/applications
|
|
|
|
ln -sf /opt/chemaxon/marvinsuite/MarvinSketch ${DESTDIR}/usr/bin/
|
|
ln -sf /opt/chemaxon/marvinsuite/MarvinView ${DESTDIR}/usr/bin/
|
|
}
|