summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7d3a8d1e63ae6d34113db744c1bbe62a3ab834b9 (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
# Maintainer: Caltlgin Stsodaat <contact@fossdaily.xyz>
# Contributor: Jesus Franco <jesusfranco at gmail dot com>

_pkgname='findfileconflicts'
pkgname="${_pkgname}-git"
pkgver=1.1.3.r7.gd78810e
pkgrel=1
pkgdesc='Detect and solve possible file conflicts'
arch=('x86_64')
url='https://github.com/artemanufrij/findfileconflicts'
license=('GPL3')
depends=('granite')
makedepends=('git' 'meson' 'vala')
provides=("${_pkgname}")
source=("git+${url}.git")
sha256sums=('SKIP')

pkgver() {
  git -C "${_pkgname}" describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  arch-meson "${_pkgname}" build
  meson compile -C build
}

package() {
  DESTDIR="${pkgdir}" meson install -C build
  install -Dm644 -t "${pkgdir}/usr/share/doc/${_pkgname}" "${_pkgname}/README.md"
}

# vim: ts=2 sw=2 et: