blob: 70781b44b8a57c27859269c4c9ce4a76a916c3ce (
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
|
# Maintainer: zotan <aur@zotan.email>
pkgname=iceshrimp-bin
pkgver=v2023.12.9
pkgrel=1
pkgdesc="YAMF (Yet another Misskey fork) bringing you no-nonsense fixes, features & improvements you actually want since 2023"
arch=(x86_64)
url="https://iceshrimp.dev/iceshrimp/iceshrimp"
license=(AGPL3)
conflicts=(iceshrimp)
provides=(iceshrimp)
depends=()
optdepends=(
"ffmpeg: for video transcoding"
"sonic: efficient full text search backend"
"meilisearch: feature-rich full text search backend"
)
backup=("etc/iceshrimp/configuration.yml")
install="iceshrimp.install"
source=(
"https://repo.iceshrimp.dev/archlinux/iceshrimp/os/x86_64/iceshrimp-${pkgver}-${pkgrel}-x86_64.pkg.tar.zst"
"iceshrimp.hook"
)
sha512sums=('a9fcbe49b18d156dec2e1d96b8e6deece3d5232a9da3afa4bdfac422176953e104ae27ff05ff6d2e5e4d1aab23a81e9e8ca79d9657051bddd75ddb851f5cfd6d'
'91c456bda5c14b01cbf770a2e9e57425ac5e82226799d39e11cc6e83b219a0559eeed8693c5eb051fffb28cdd23d4682ee40f46372117880aeeddb00ecb8726f')
package() {
# Add runtime only dependencies
depends+=(nodejs redis postgresql)
cp -dpTr --no-preserve=ownership "${srcdir}/" "${pkgdir}"
rm -f "${pkgdir}"/.{BUILDINFO,INSTALL,MTREE,PKGINFO}
install -Dm 644 "${srcdir}/iceshrimp.hook" "${pkgdir}/usr/share/libalpm/hooks/iceshrimp.hook"
}
options=(!strip)
|