blob: 24d5b6b566de4438d6e7adfe9d979160aaba58c3 (
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
60
|
pkgname=ilspy-git
pkgver=v10.1.r832.gc40c299ff
pkgrel=1
pkgdesc=".NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more)"
arch=('any')
url="https://github.com/icsharpcode/ILSpy"
depends=('dotnet-runtime-10.0')
makedepends=('git' 'dotnet-sdk-preview-bin' 'powershell' 'imagemagick')
license=('MIT')
source=("git+https://github.com/icsharpcode/ILSpy")
sha512sums=('SKIP')
options=(!debug)
pkgver() {
cd "$srcdir/ILSpy"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
# https://github.com/icsharpcode/ILSpy?tab=readme-ov-file#how-to-build
# `ILSpy/ILSpy.csproj` is the `ilspy` project
build() {
cd "$srcdir/ILSpy"
# Map Arch architecture ($CARCH) to .NET Runtime Identifier (RID)
case "$CARCH" in
x86_64) _rid="linux-x64" ;;
aarch64) _rid="linux-arm64" ;;
armv7h) _rid="linux-arm" ;;
*) echo "Unsupported architecture"; exit 1 ;;
esac
dotnet publish -c Release -r "$_rid" -o ../publish --no-self-contained ILSpy/ILSpy.csproj
}
package() {
mkdir -p "$pkgdir/opt/ilspy/"
mkdir -p "$pkgdir/usr/bin/"
cp -R "$srcdir/publish/"* "$pkgdir/opt/ilspy/"
chmod 755 "$pkgdir/opt/ilspy/ILSpy"
ln -s /opt/ilspy/ILSpy "$pkgdir/usr/bin/ilspy"
magick \
"$srcdir/ILSpy/ILSpy/Assets/ILSpy.ico[0]" \
"$srcdir/ILSpy/ILSpy/Assets/ILSpy.png"
install -Dm644 \
"$srcdir/ILSpy/ILSpy/Assets/ILSpy.png" \
"$pkgdir/usr/share/icons/hicolor/48x48/apps/ilspy.png"
install -Dm644 /dev/stdin \
"$pkgdir/usr/share/applications/ilspy.desktop" <<EOF
[Desktop Entry]
Type=Application
Name=ILSpy
Comment=.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more)
Exec=ilspy %F
Icon=ilspy
Terminal=false
Categories=Development;
EOF
}
|