Add LICENSE to source array, update source file checksums, and fix LICENSE file install command

This commit is contained in:
David Thurstenson 2024-06-12 14:45:21 -05:00
parent 42874c6f4c
commit 68cc7754f7
2 changed files with 7 additions and 6 deletions

View File

@ -1,5 +1,3 @@
# Generated by mksrcinfo v8
# Tue Apr 16 22:39:26 UTC 2019
pkgbase = soundfont-titanic pkgbase = soundfont-titanic
pkgdesc = A public domain, high quality MIDI soundfont by Luke Sena pkgdesc = A public domain, high quality MIDI soundfont by Luke Sena
pkgver = 1.2 pkgver = 1.2
@ -8,7 +6,8 @@ pkgbase = soundfont-titanic
arch = any arch = any
license = custom: public domain license = custom: public domain
source = https://www.dropbox.com/s/5yzhvlrkf7s3tb2/titanic.sf2 source = https://www.dropbox.com/s/5yzhvlrkf7s3tb2/titanic.sf2
source = LICENSE
sha1sums = 8941d35771b56f3c6abd2b0bbb5085fd0a2b1e0d sha1sums = 8941d35771b56f3c6abd2b0bbb5085fd0a2b1e0d
sha1sums = ad8452acc1455449e2cb9488fcb6d70323aa4ee5
pkgname = soundfont-titanic pkgname = soundfont-titanic

View File

@ -20,8 +20,10 @@ pkgdesc='A public domain, high quality MIDI soundfont by Luke Sena'
arch=('any') arch=('any')
license=('custom: public domain') license=('custom: public domain')
url='http://www.titanicsf.com' url='http://www.titanicsf.com'
sha1sums=('8941d35771b56f3c6abd2b0bbb5085fd0a2b1e0d') sha1sums=('8941d35771b56f3c6abd2b0bbb5085fd0a2b1e0d'
source=('https://www.dropbox.com/s/5yzhvlrkf7s3tb2/titanic.sf2') 'ad8452acc1455449e2cb9488fcb6d70323aa4ee5')
source=('https://www.dropbox.com/s/5yzhvlrkf7s3tb2/titanic.sf2'
'LICENSE')
# This is an AUR script. Do not compress the package. # This is an AUR script. Do not compress the package.
PKGEXT='.pkg.tar' PKGEXT='.pkg.tar'
@ -29,5 +31,5 @@ PKGEXT='.pkg.tar'
package() { package() {
pwd pwd
install -Dm644 titanic.sf2 "${pkgdir}/usr/share/soundfonts/titanic.sf2" install -Dm644 titanic.sf2 "${pkgdir}/usr/share/soundfonts/titanic.sf2"
install -Dm644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
} }