Initial import

This commit is contained in:
Josh Dye 2015-07-27 17:21:50 -07:00
commit ad732b75ca
3 changed files with 57 additions and 0 deletions

14
.SRCINFO Normal file
View File

@ -0,0 +1,14 @@
pkgbase = soundfont-titanic
pkgdesc = A public domain, high quality MIDI soundfont by Luke Sena
pkgver = 1.2
pkgrel = 2
url = http://www.titanicsf.com
arch = any
license = custom: public domain
source = https://www.dropbox.com/s/g0yxy0326jgar34/titanic.sf2
source = LICENSE
md5sums = 06da89576208a6384492afa7f934ffc4
md5sums = a2c2f33d92f54e62e25da9bc647c8b35
pkgname = soundfont-titanic

12
LICENSE Executable file
View File

@ -0,0 +1,12 @@
Copyright notice
Titanic contains samples that could be subject to copyright and intellectual property rights. Because some instruments have been compiled from external resources that did not include copyright information, I cannot encourage commercial use of them. However, if you wish to use certain sounds for your music, just send me an email listing those instruments you'd like to use. The instruments listed below belong to Frank Wen's Fluid soundfont (release I), who kindly gave me permission to use them in Titanic. You can contact him regarding the use of his sounds from his web, www.fluidfonts.com, which includes his email address and forums. T
Clavinet Accordion (bank 1)
Xylophone Harp
Music box Viola
Harmonica Banjo
Celesta Sci-fi
This soundfont is intended for General Midi use and is free, hence you may not redistribute it or sell it in part or as a whole, but you can modify the instruments to suit your needs and also reverse engineer the samples as long as they stay in your computer.

31
PKGBUILD Executable file
View File

@ -0,0 +1,31 @@
# Maintainer: Josh Dye
# Contributor: Maximilien Noal <noal dot maximilien at gmail dot com> [AUR: xcomcmdr]
# The official website is long gone, but:
# - the soundfont itself is available on a few other websites
# - It's readme was posted here: http://www.kvraudio.com/forum/viewtopic.php?p=3019215
# Rather than downloading the soundfont from websites without permission or bothering to get one,
# I made it available publicly on my own Dropbox account.
# The license is from the "Copyright Notice" section of the readme.
# It states also that the soundfont is released in the public domain, but
# that some sounds included did not have any copyright information.
# For details, please see the readme.
pkgname='soundfont-titanic'
pkgver='1.2'
pkgrel=2
pkgdesc='A public domain, high quality MIDI soundfont by Luke Sena'
arch='any'
license='custom: public domain'
url='http://www.titanicsf.com'
md5sums=('06da89576208a6384492afa7f934ffc4' 'a2c2f33d92f54e62e25da9bc647c8b35')
source=('https://www.dropbox.com/s/g0yxy0326jgar34/titanic.sf2' 'LICENSE')
# This is an AUR script. Do not compress the package.
PKGEXT='.pkg.tar'
package() {
install -Dm644 titanic.sf2 "${pkgdir}/usr/share/soundfonts/titanic.sf2"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}