blob: 810058934cd05a8408d799430167a3e0e1e77940 (
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
33
34
35
36
37
38
39
40
41
|
# Maintainer: éclairevoyant
# Contributor: Dave Reisner <d at falconindy dot com>
_pkgname=pkgfile
pkgname="$_pkgname-git"
pkgver=21.r52.9c45690
pkgrel=1
epoch=1
pkgdesc="a pacman .files metadata explorer"
arch=('x86_64' 'i686')
url="https://github.com/falconindy/$_pkgname"
license=('MIT')
depends=(curl libarchive pacman pcre systemd-libs)
makedepends=(git meson perl)
checkdepends=(gmock gtest python)
provides=("$_pkgname")
conflicts=("$_pkgname")
install="$_pkgname.install"
source=("git+$url.git")
b2sums=('SKIP')
pkgver() {
cd $_pkgname
git describe | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
}
build() {
cd $_pkgname
arch-meson build
ninja -C build
}
check() {
cd $_pkgname
meson test -C build
}
package() {
cd $_pkgname
DESTDIR="$pkgdir" ninja -C build install
}
|