blob: 032f472f0a393b56e990c2ee1378b7d6b7c4972d (
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: Andrew Gunnerson <accounts+arch@chiller3.com>
pkgname=baad
pkgver=01
pkgrel=1
pkgdesc="Extracts various sections from the Twilight Princess Z2Sound.baa file"
arch=('i686' 'x86_64')
url="https://hcs64.com/files/"
license=('GPL')
source=("https://hcs64.com/files/${pkgname}${pkgver}.zip")
sha512sums=('a7dcb1d70460fee85955bd25df2839c0d1302dff8ca97d3d231445ebff81dfd8887595211e19d52df03cce984103501512884b1e5a56b794992e15e78e9a649a')
build() {
cd "${srcdir}"
# Compile bst
gcc bst.c -o bst
# Compile baad
gcc baad.c -o baad
}
package() {
cd "${srcdir}"
# Install bst
install -Dm755 bst "${pkgdir}/usr/bin/bst"
install -Dm755 baad "${pkgdir}/usr/bin/baad"
}
# vim:set ts=2 sw=2 et:
|