aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 392d819669b5d5e764dccd6ca528c6928a349d70 (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
28
29
30
31
# Maintainer: TBK <aur at jjtc dot eu>
# Contributor: TBK <aur at jjtc dot eu>

pkgname=amiitool
pkgver=2
pkgrel=2
pkgdesc='Reverse-engineered amiibo cryptography'
url='https://github.com/socram8888/amiitool'
arch=('x86_64')
license=('MIT')
makedepends=('git' 'mbedtls') # git is used to pull head version
source=("$pkgname-r$pkgver.tar.gz::https://github.com/socram8888/amiitool/archive/r$pkgver.tar.gz"
		fix-mbedtls_include.patch) 
md5sums=('a3c193286e4930fa903d742424f5cad5'
         'ec7d604b88be91eea182d9d5da73f413')
_builddir="$pkgname-r$pkgver"

prepare() {
	cd "_$builddir"
	patch -p1 < "${srcdir}/fix-mbedtls_include.patch"
}

build() {
	cd "_$builddir"
	make prefix=/usr
}

package() {
	cd "_$builddir"
	make prefix=/usr DESTDIR="$pkgdir" install
}