blob: af77c73a9e7f0cc33f940b836fa380be98129b5d (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Lucas Melo <luluco250 at gmail dot com>
pkgname=gcn64tools-git
pkgver=r423.e8420ea
pkgrel=1
pkgdesc='Raphnet USB adapter management tools.'
arch=('any')
url='https://github.com/raphnet/gcn64tools'
license=('GPL3')
makedepends=('hidapi' 'pkgconf' 'gtk3' 'libxml2')
optdepends=('dfu-programmer: firmware updates')
provides=('gcn64tools')
source=(
"git+${url}.git"
'raphnet-manager.desktop'
'raphnet-manager.svg'
)
sha256sums=(
'SKIP'
'7dc5f9c2c92649f96e08df50d0634f5a24f61da04bb753455959d66fb2300850'
'67416a5f07a6c349ca3f4a1e75792e23f93956ea26dbb45bf02ccdcd3eca558a'
)
install=gcn64tools.install
pkgver() {
cd "$srcdir/gcn64tools"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/gcn64tools/src"
make ${MAKEFLAGS:-CFLAGS=-O2 -j$(nproc)}
}
package() {
usr="$pkgdir/usr"
# Install desktop file and icon.
install -Dm644 "$srcdir/raphnet-manager.desktop" -t "$usr/share/applications"
install -Dm644 "$srcdir/raphnet-manager.svg" -t "$usr/share/icons/hicolor/scalable/apps"
cd "$srcdir/gcn64tools/src"
mkdir -p "$usr/bin"
make install PREFIX="$usr"
cd '../firmwares'
# Future-proof by automatically determining the name of each firmware
# folder.
for f in *; do
cd $f
files=(*.hex)
# Get the name of the first firmware file found and remove everything
# after the hyphen.
name=${files[0]%-*}
install -Dm644 * -t "$usr/share/gcn64tools/firmware/$name"
cd ..
done
}
|