blob: bf65c42895fbf9248b3a2b921bfb0bf4b8d32697 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Maintainer: CrocoDuck <crocoduck dot oducks at gmail dot com>
# Contributor: Simon Thorpe <simon@hivetechnology.com.au>
pkgname=pianoteq-standard-trial-bin
pkgver=6.1.1
pkgrel=1
pkgdesc="Virtual piano instrument using physical modelling synthesis. Both standalone and plugin versions."
arch=('i686' 'x86_64')
url="https://www.pianoteq.com/home"
license=('custom')
depends=('alsa-lib' 'freetype2' 'libxext')
makedepends=('gendesk' 'wget' 'p7zip')
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}" "pianoteq-standard-trial-bin")
source=('https://www.pianoteq.com/images/logo/pianoteq_icon_128.png')
sha256sums=('94ee64cf6688a49d74f0bf70d811e7466abac103feeab17496a89f828afcc6d3')
# Define the target archive filename:
_downfname=pianoteq_linux_trial_v${pkgver//./}.7z
# Define its checksum:
_downsha256sum=62ec1855de74a82de3a9447da908cc50ceb374c5e89c72b169a83b6000cda1d2
prepare(){
# The archive download link needs to be retrieved. Retrieve download page source:
wget -q -O downpage.html https://www.pianoteq.com/try?file="$_downfname"
# Now, isolate the final string of the download link from the source:
downstr=$(cat downpage.html | grep "<form action" | grep style | grep -o -P '(?<=action=").*(?=" method)')
# All ingredients are ready! Finalize the download url and download:
downurl="https://www.pianoteq.com/"$downstr""
wget --content-disposition "$downurl"
# Check integrity:
echo $_downsha256sum $_downfname|sha256sum -c || { echo 'Checksum failed!'; exit 1; }
# Extract:
7z x $_downfname
# Generate Desktop Entry:
gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name='Pianoteq 6' --exec='Pianoteq\ 6' --categories 'Audio;Sequencer;Midi;AudioVideoEditing;Music;AudioVideo;'
}
package(){
# Define architecture specific file directory:
if [[ "$CARCH" == i686 ]]; then
archdir=i386
else
archdir=amd64
fi
# Install program files:
install -Dm 755 "$srcdir/Pianoteq 6/$archdir/Pianoteq 6" "$pkgdir/usr/bin/Pianoteq 6"
install -Dm 755 "$srcdir/Pianoteq 6/$archdir/Pianoteq 6.so" "$pkgdir/usr/lib/vst/Pianoteq 6.so"
cd "$srcdir/Pianoteq 6/$archdir/Pianoteq 6.lv2"
for i in *; do
install -D "$i" "$pkgdir/usr/lib/lv2/Pianoteq 6.lv2/$i"
done
cd $srcdir
# Install desktop launcher:
install -Dm 644 "$srcdir/pianoteq_icon_128.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
install -Dm 644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/${pkgname%-*}.desktop"
# Install the license:
install -d "$pkgdir/usr/share/licenses/$pkgname"
install -m 644 Pianoteq\ 6/*Licence* "$pkgdir/usr/share/licenses/$pkgname/"
# Install the Documentation:
install -D "Pianoteq 6/README_LINUX.txt" "$pkgdir/usr/share/doc/${pkgname%-*}/README_LINUX.txt"
cd "$srcdir/Pianoteq 6/Documentation"
for i in *; do
install -D "$i" "$pkgdir/usr/share/doc/${pkgname%-*}/$i"
done
}
|