blob: 8030f6e0a40104e321712a7678725bb841057446 (
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
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Martin Rys <https://rys.rs/contact> | Toss a coin on https://rys.rs/donate
# Previous Maintainer: John Troxler <firstname dot lastname at gmail dot com>
# https://github.com/loot/libloot/issues/95
# Maybe add doxgen for /docs, but then we get the following error as `spdlog`` will be pulled:
# /home/c0rn3j/AUR/loot/src/loot-0.23.1/src/gui/state/game/game.cpp:49:10: fatal error: spdlog/fmt/bundled/ranges.h: No such file or directory
# 49 | #include <spdlog/fmt/bundled/ranges.h>
# Things like OGDF are downloaded prebuilt, this needs to be fixed if we want to have a proper source package
# See cmake doc link below
# loot E: ELF files outside of a valid path ('opt/').
# loot E: Insecure RUNPATH '.' in file ('opt/loot/LOOT')
# loot E: Insecure RUNPATH '/opt/loot' in file ('opt/loot/LOOT')
pkgname=loot
# https://github.com/loot/loot/releases
pkgver=0.24.1
pkgrel=1
pkgdesc="A load order optimisation tool for Starfield, The Elder Scrolls (Morrowind and later) and Fallout (3 and later) games."
arch=('x86_64')
url="https://loot.github.io"
license=('GPL-3.0-only')
depends=('fmt' 'icu' 'hicolor-icon-theme' 'onetbb' 'qt6-base' 'libloot')
makedepends=('git' 'boost' 'cbindgen' 'cmake' 'rust')
source=(
"${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz"
'LOOT.desktop'
'algorithm.patch'
)
sha256sums=('9713c5b556aa21663dc76e543b422be6394f68cf7c81f6ce212f5272c7d8e9ad'
'3dd063fdbe33dc82a4298bd5bcd3b4e7490adab4128389c153d12c6b074b27fb'
'dfcacfd850b9e89607944c091733df6ca7830dc4a8bce144db32e01b8bf4436a')
prepare() {
cd "${pkgname}-${pkgver}"
# See https://aur.archlinux.org/packages/loot#comment-993431
patch -Np1 -i "${srcdir}"/algorithm.patch
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
# Archive structure: https://github.com/loot/loot/issues/1990
mkdir -p pkg/lib pkg/include
cp /usr/lib/libloot.s* ./pkg/lib/
cp -r /usr/include/loot ./pkg/include/
tar -zcf "libloot.tar.gz" ./pkg/
mkdir -p build
cd build
# https://github.com/loot/loot?tab=readme-ov-file#cmake-variables
cmake .. \
-DLIBLOOT_URL="${srcdir}/${pkgname}-${pkgver}/libloot.tar.gz" \
-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE \
-DCMAKE_INSTALL_RPATH="/opt/${pkgname}"
make LOOT
}
package() {
_builddir="${srcdir}/${pkgname}-${pkgver}/build"
install -Dm755 -t "${pkgdir}/opt/${pkgname}" "${_builddir}/LOOT"
mkdir -p "${pkgdir}/usr/bin"
ln -s "/opt/${pkgname}/LOOT" "${pkgdir}/usr/bin"
# Install the icon
install -Dm644 "${_builddir}/../resources/icons/loot.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/loot.svg"
# Install desktop entry
install -Dm644 "${srcdir}/LOOT.desktop" "${pkgdir}/usr/share/applications/LOOT.desktop"
}
|