mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 15:12:02 +01:00
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=fractal
|
|
pkgver=4.0.0
|
|
pkgrel=0
|
|
pkgdesc="Matrix group messaging app"
|
|
url="https://wiki.gnome.org/Apps/Fractal"
|
|
arch="x86_64" # limited by Rust
|
|
license="GPL-3.0-or-later"
|
|
makedepends="meson gtk+3.0-dev dbus-dev openssl-dev gspell-dev libhandy-dev
|
|
gtksourceview-dev gstreamer-dev gst-plugins-base-dev gst-plugins-bad-dev
|
|
glib-dev libsecret-dev cargo gettext-dev gmp-dev"
|
|
options="!check" # no tests
|
|
subpackages="$pkgname-lang"
|
|
source="https://gitlab.gnome.org/GNOME/fractal/-/archive/${pkgver}/fractal-${pkgver}.tar.gz"
|
|
|
|
export GETTEXT_BIN_DIR=/usr/bin
|
|
export GETTEXT_LIB_DIR=/usr/lib/gettext
|
|
export GETTEXT_INCLUDE_DIR=/usr/include
|
|
|
|
build() {
|
|
meson \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--buildtype=release \
|
|
. output
|
|
ninja -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" ninja -C output install
|
|
}
|
|
|
|
sha512sums="91aef68d8d7024e27c0448854dfcefd04a6f7757e5cd649659edbeb59ba5d508879102926ad008dc65d2f2dbef2a39528375a1c02f82b7a18eee322cfbd28d40 fractal-4.0.0.tar.gz"
|