# Contributor: Christopher Arndt # Contributor: Luis Pablo Gasparotto # Contributor: Phillip Fynan # Maintainer: Peter Sutton _pkgver_year=2021 _pkgver_month=06 _pkgver_day=27 pkgname=abcmidi pkgver=$_pkgver_year$_pkgver_month$_pkgver_day pkgrel=1 pkgdesc='A set of tools for converting ABC files to MIDI files and vice versa, as well as other small utilities' url="https://ifdo.ca/~seymour/runabc/top.html" license=('GPL') depends=() makedepends=() source=("https://ifdo.ca/~seymour/runabc/abcMIDI-${_pkgver_year}.${_pkgver_month}.${_pkgver_day}.zip") arch=(x86_64) sha256sums=('08ecbdda0ab81551f4d319e2db71f81f566b21adba252d8793c70a137bc0dd38') build() { cd "$srcdir"/abcmidi ./configure --prefix=/usr make } package() { cd "$srcdir"/abcmidi make DESTDIR="$pkgdir/" install # Install programming documentation to docdir install -m 755 -d "$pkgdir"/usr/share/doc/$pkgname/programming install -m 644 doc/programming/*.txt doc/programming/*.abc \ "$pkgdir"/usr/share/doc/$pkgname/programming # Install example ABC files to docdir install -m 755 -d "$pkgdir"/usr/share/doc/$pkgname/samples install -m 644 samples/*.abc "$pkgdir"/usr/share/doc/$pkgname/samples }