blob: 4da95003da9536bdbc7bd42f9001e98d4c71140e (
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
|
# Maintainer: Martin Rys <https://rys.rs/contact> | Toss a coin on https://rys.rs/donate
# TODO: Build and ship the docs
pkgname=libloot
_pkgname=loot
# https://github.com/loot/libloot/releases
pkgver=0.25.5
pkgrel=1
pkgdesc="A library for the 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=('tbb' 'icu' 'fmt' 'spdlog')
makedepends=('git' 'boost' 'cbindgen' 'cmake' 'rust' 'doxygen' 'python-breathe' 'python-sphinx')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('7ebd54805d1d03b2fe176a23ed928b85502816892de361c6493abe39acb8924c')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
mkdir -p build
cd build
# https://github.com/loot/libloot?tab=readme-ov-file#cmake-variables
# built-in yaml-cpp hack due to https://github.com/loot/loot/issues/2076#issuecomment-2729508538
cmake .. \
-DCMAKE_DISABLE_FIND_PACKAGE_yaml-cpp=ON \
-DCMAKE_SKIP_RPATH=TRUE
# -DLIBLOOT_INSTALL_DOCS=OFF
make loot
}
package() {
_builddir="${srcdir}/${pkgname}-${pkgver}/build"
# install -Dm755 -t "${pkgdir}/usr/lib" "${_builddir}/libloot.s"*
install -Dm755 -t "${pkgdir}/usr/lib" "${_builddir}/libloot.so.${pkgver}"
ln -s "libloot.so.${pkgver}" "${pkgdir}/usr/lib/libloot.so.0"
ln -s "libloot.so.${pkgver}" "${pkgdir}/usr/lib/libloot.so"
install -d "${pkgdir}/usr/include"
cp -r "${_builddir}/../include"/* "${pkgdir}/usr/include"
install -d "${pkgdir}/usr/lib/cmake/${pkgname}"
cp "${_builddir}/liblootConfig.cmake" "${pkgdir}/usr/lib/cmake/${pkgname}/"
cp "${_builddir}/liblootConfigVersion.cmake" "${pkgdir}/usr/lib/cmake/${pkgname}/"
cp "${_builddir}/CMakeFiles/Export/"*"/"*".cmake" "${pkgdir}/usr/lib/cmake/${pkgname}/" # two liblootTarget*.cmake files
# find . "${pkgdir}"
}
|