blob: fad0dcfd53edd765bd672ddc8c84ba05dca756f7 (
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
|
# Maintainer: Doug Newgard <dnewgard at outlook dot com>
# Maintainer : David Phillips <dbphillipsnz at gmail>
# Contributor: Ricardo Leuck <leuck.r at gmail> (original brewtarget-git PKGBUILD)
pkgname=brewtarget
pkgver=4.0.11
pkgrel=1
pkgdesc="Beer calculator compatible with BeerSmith. Generates instructions from the recipe and interactive mash designer."
url="https://www.brewtarget.beer/"
arch=('x86_64' 'i686')
license=('GPL-3.0-or-later AND WTFPL AND (CC-BY-SA-3.0 OR LGPL-3.0-or-later) AND LGPL-2.1-only')
depends=('openssl' 'qt6-base' 'qt6-multimedia' 'qt6-svg' 'xalan-c' 'xerces-c')
makedepends=('boost' 'clang' 'cmake' 'git' 'meson' 'ninja' 'pandoc' 'qt6-declarative' 'qt6-tools')
source=("git+https://github.com/Brewtarget/brewtarget.git#tag=v${pkgver}"
"git+https://github.com/tristanpenman/valijson.git")
sha512sums=('933fd7539a34bb24daf55aa95595ac621e1c6fb32be93a0417064633da3542c8d9fa0047cfd99f7842456928db57692ec565638facceea257bf6263bea49daf1'
'SKIP')
prepare() {
cd ${pkgname}
# valijson submodule is now required
git submodule init third-party/valijson
git config submodule.third-party/valijson.url "$srcdir/valijson"
git -c protocol.file.allow=always submodule update
# Disable boost-stacktrace_backtrace, requires an optional boost lib that's only built in Debianland
sed -i "/boostModules += 'stacktrace_backtrace'/ {N;N;d}" meson.build
# Make libbacktrace not required, we're not running the bt script
sed -i "/compiler\.find_library('backtrace'/ {n;s/true/false/}" meson.build
# Disable static linking
sed -i 's/static : true/static : false/g' meson.build
# Don't screw with Arch's build flags
sed -i '/if compiler.get_id/ s/gcc/disable/' meson.build
}
build() {
PATH="$PATH:/usr/lib/qt6/bin/" \
meson setup --prefix=/usr ${pkgname} build
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja install -C build
install -Dm644 "${pkgname}/COPYRIGHT" -t "${pkgdir}/usr/share/licenses/${pkgname}/"
}
|