Date: Monday, March 29, 2021 @ 07:43:52 Author: alucryd Revision: 908716
archrelease: copy trunk to community-staging-x86_64 Added: pantheon-calculator/repos/community-staging-x86_64/ pantheon-calculator/repos/community-staging-x86_64/PKGBUILD (from rev 908715, pantheon-calculator/trunk/PKGBUILD) ----------+ PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) Copied: pantheon-calculator/repos/community-staging-x86_64/PKGBUILD (from rev 908715, pantheon-calculator/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-03-29 07:43:52 UTC (rev 908716) @@ -0,0 +1,41 @@ +# Maintainer: Maxime Gauduin <aluc...@archlinux.org> + +pkgname=pantheon-calculator +pkgver=1.6.0 +pkgrel=2 +pkgdesc='The Pantheon Calculator' +arch=(x86_64) +url=https://github.com/elementary/calculator +license=(GPL3) +groups=(pantheon) +depends=( + glib2 + gtk3 + libgranite.so +) +makedepends=( + git + intltool + meson + vala +) +_tag=6d4609875d216cd0e22a0fca906c7a6eb71179bc +source=(pantheon-calculator::git+https://github.com/elementary/calculator.git#tag=${_tag}) +sha256sums=(SKIP) + +pkgver() { + cd pantheon-calculator + + git describe --tags +} + +build() { + arch-meson pantheon-calculator build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et: