1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/gitg/APKBUILD
2022-11-22 20:33:35 +01:00

71 lines
1.8 KiB
Text

# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=gitg
pkgver=41
pkgrel=2
pkgdesc="gitg is the GNOME GUI client to view git repositories"
url="https://wiki.gnome.org/Apps/Gitg"
arch="all"
license="GPL-2.0-or-later"
depends="gsettings-desktop-schemas"
makedepends="
glib-dev
gobject-introspection-dev
gsettings-desktop-schemas-dev
gspell-dev
gtk+3.0-dev
gtksourceview4-dev
json-glib-dev
libdazzle-dev
libgee-dev
libgit2-glib-dev
libpeas-dev
libsecret-dev
libsoup-dev
libxml2-dev
meson
vala
"
checkdepends="bash xvfb-run"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="https://download.gnome.org/sources/gitg/${pkgver%.*}/gitg-$pkgver.tar.xz
meson-fix-build.patch
"
prepare() {
default_prepare
if want_check; then
# the test needs a git repository, so we make one here
# (we can't run this on aports since it's too large)
mkdir "$builddir"/tmprepo
cd "$builddir"/tmprepo
git init
# sometimes git fails to guess the email which would cause a failed
# build, this fixes it
git config --local user.name "test commiter"
git config --local user.email "test@example.com"
echo "test" > README.md
git add "README.md"
git commit -m "test commit"
fi
}
build() {
abuild-meson . output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
cd "$builddir/tmprepo"
xvfb-run -a meson test --no-rebuild --print-errorlogs -C ../output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
4e8fe0b1ab5302f975f58277e5ae42300a96d20bb1c41426d8c0e058a53420fcca73f75566f593f5aa2882b3a0e1608cdd542bc4f68c731153ba9185972d6f51 gitg-41.tar.xz
1ec57998040b1a54653c1a037a1a70d9635a9366dd796598de764954e6374385762932c5fe8ad55888b99187d5bc165effdd3a4b6922ac6e5d19ad2699f200da meson-fix-build.patch
"