From ad732b75ca6d1519335b408f1caf8400eab90f2f Mon Sep 17 00:00:00 2001 From: Josh Dye Date: Mon, 27 Jul 2015 17:21:50 -0700 Subject: [PATCH] Initial import --- .SRCINFO | 14 ++++++++++++++ LICENSE | 12 ++++++++++++ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 .SRCINFO create mode 100755 LICENSE create mode 100755 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..8d5622d --- /dev/null +++ b/.SRCINFO @@ -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 + diff --git a/LICENSE b/LICENSE new file mode 100755 index 0000000..e76ace9 --- /dev/null +++ b/LICENSE @@ -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. \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD new file mode 100755 index 0000000..0aaccf6 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Josh Dye +# Contributor: Maximilien Noal [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" +}