blob: 465dbd28433200824ab1b5b802e9a207db6c915b (
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
|
# Maintainer: cgar <notify-cgar -AT- outlook -DOT- com>
pkgname='discord-chat-exporter-plus-cli'
_apkgname='DiscordChatExporter'
_gpkgname='DiscordChatExporterPlus'
pkgver=2.46
pkgrel=1
pkgdesc='Exports Discord chat logs to a file (without the political bloat)'
url="https://github.com/nulldg/$_gpkgname"
license=(MIT)
arch=(any)
conflicts=('discord-chat-exporter-cli')
source=(
"$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz"
"$pkgname"
)
b2sums=(
347b63a70a2c63e93fab4e356b3530aed1382936c86b447edd3fa9aa651dbc6592e550891b5f89a7727c4d2e838989aee8bfbf529e58666b4a85602bfad4dd1d
f04af622af8aee1c08beb6444aa7e46db9c55180a7cd87f0fceb2dce9d27052883be6322074a8944ff51af142e8d104d5ae89c2b54e79700769d1dabc38328e0
)
options=('!strip')
depends=('dotnet-runtime-9.0')
makedepends=('dotnet-sdk-9.0')
build() {
cd "$_gpkgname-$pkgver"
dotnet publish "$_apkgname.Cli" --configuration "Release"
}
package() {
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
cd "$_gpkgname-$pkgver"
install -Dm644 License.txt "$pkgdir/usr/share/licenses/$pkgname/License.txt"
cd "$_apkgname.Cli/bin/Release/net9.0/linux-x64/publish"
find . -type f -exec install -Dm644 "{}" "$pkgdir/usr/lib/$pkgname/{}" \;
}
|