blob: a933ee738ec2634e7fdebae619f5ec3ac80c84b9 (
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.44
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=(
6fe337fe68e944129a5b55f5ae5c3e1bdbd14db44ef9c8a6fc095f4b1a2173889154e9df76f1f3757b438584020b0462731497ee64e220e080a7825f7d002b19
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/{}" \;
}
|