summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d3e02b934e7773b57fcdcb46e42b5d740da48a7a (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
25
26
27
# Maintainer: Alexander Nicholi <me@nicholatian.com>
pkgname=mid2agb
pkgver=1
pkgrel=1
epoch=
pkgdesc="Process MIDI into M4A AGB compatible assembly"
arch=('i686' 'x86_64')
url="https://code.caveoforig.in/alex/$pkgname"
license=('BSD-2')
depends=()
makedepends=('git')
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+https://code.caveoforig.in/alex/$pkgname.git")
md5sums=('SKIP')

build() {
  cd "$srcdir/$pkgname"

  make
}

package() {
  cd "$srcdir/$pkgname"

  install -Dsm755 "$srcdir/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
}