aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c5f2fc10ca5c684829cf89e01763b369c0aa4eb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Jordan Day < jordanday444 at gmail dot com >

pkgname=siddasm
pkgver=1.0
pkgrel=4
pkgdesc="Written by Gufino, this program produces disassembler output of .SID music files, so that you'll be able to see the musicroutine code."
arch=('i686' 'x86_64')
url="https://cadaver.github.io/tools"
source=(https://cadaver.github.io/tools/siddasm1.tar.gz)
license=('custom')
provides=("$pkgname")
makedepends=('gcc')
sha256sums=('2618b5596195f0bdb04ec914cb41fef0b43520ad1a386b22aa00387d48894c76')

build() {
  cd "$srcdir"
  gcc -o $pkgname siddasm1.c 
}

package() {
  mkdir -p "$pkgdir/usr/bin"
  install -Dm755 ./$pkgname "$pkgdir/usr/bin"
}
md5sums=('f73d5109a777a09751c7e742a39551a9')