blob: 97091226e2ae5a8c5bc8e55268cf73310b1e10a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: oech3
pkgname=soundfont-gmgsx
pkgver=2.9.0.3
pkgrel=1
pkgdesc="A public dimain sountfont by Kenneth Rundt which has similar sound as gm.dls"
arch=('any')
license=('custom:commercial')
url="synthfont.com/"
makedepends=('innoextract')
source=("https://www.${url}/SynthFont2x64Setup.exe")
sha256sums=('99209e856544af86e52c44dba6e8f6572d72cfb81453f103c204530794989dcc')
prepare(){
innoextract -I app/GMGSx.sf2 SynthFont2x64Setup.exe #-I app/License2.txt
}
package(){
install -Dm644 app/GMGSx.sf2 "${pkgdir}/usr/share/soundfonts/GMGSx.sf2"
#set default font for fluidsynth
ln -sv "${pkgdir}/usr/share/soundfonts/GMGSx.sf2" "${pkgdir}/usr/share/soundfonts/default.sf2"
#install -Dm644 app/License2.txt "${pkgdir}/usr/share/licenses/SynthFont/Synthfont2.txt"
}
|