blob: a15840402f2c823a814df984f8299e129ffd3103 (
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: RubixDev <silas dot groh at t-online dot de>
# Contributer: Yacob Zitouni <yacob.zitouni@gmail.com>
pkgname=('bannertool')
pkgver=1.2.0
pkgrel=4
pkgdesc="A tool for creating 3DS banners"
arch=('i686' 'x86_64')
url="https://github.com/Steveice10/bannertool/"
license=('MIT')
depends=('zip')
makedepends=('git')
sha256sums=('SKIP' 'SKIP')
source=("$pkgname::git+https://github.com/Steveice10/bannertool.git#tag=1.2.0"
'buildtools::git+https://github.com/Steveice10/buildtools.git#commit=b7043ff')
prepare() {
cd "$pkgname"
git config submodule.buildtools.url "$srcdir/buildtools"
git -c protocol.file.allow=always submodule update --init
}
build() {
cd "$srcdir/$pkgname/"
make
}
package() {
install -D "$srcdir/$pkgname/output/linux-$CARCH/$pkgname" "$pkgdir/usr/bin/$pkgname"
}
|