mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
822 B
Bash
37 lines
822 B
Bash
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - disable distcc, breaks meson finding miniupnpc
|
|
|
|
pkgname=fragments
|
|
pkgver=2.1
|
|
pkgrel=1
|
|
pkgdesc='BitTorrent client for GNOME'
|
|
arch=('x86_64')
|
|
url='https://gitlab.gnome.org/World/Fragments'
|
|
license=('GPL3')
|
|
options=(!distcc)
|
|
depends=('libadwaita' 'transmission-cli')
|
|
makedepends=('git' 'meson' 'rust')
|
|
_commit=7d94fd0107df498139817842a2b4b22103640c61
|
|
source=("git+https://gitlab.gnome.org/World/Fragments.git#commit=$_commit")
|
|
sha256sums=('SKIP')
|
|
options=(!lto)
|
|
|
|
pkgver() {
|
|
cd Fragments
|
|
git describe --tags | sed 's/-/+/g'
|
|
}
|
|
|
|
build() {
|
|
arch-meson Fragments build
|
|
meson compile -C build
|
|
}
|
|
|
|
check() {
|
|
meson test -C build --print-errorlogs
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
}
|