summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 11f4ced1ce95d7edfb3788c911db5d14ec6ca0f8 (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
42
# Contributor: Dave Reisner <d@falconindy.com>

pkgname=pkgfile-git
pkgver=18
pkgrel=1
pkgdesc="a pacman .files metadata explorer"
arch=('x86_64' 'i686')
url="http://github.com/falconindy/pkgfile"
license=('MIT')
depends=('libarchive' 'curl' 'pcre' 'pacman')
makedepends=('git' 'perl' 'meson')
conflicts=('pkgfile')
provides=('pkgfile')
install=pkgfile.install
source=("git+https://github.com/falconindy/pkgfile")
md5sums=('SKIP')

pkgver() {
  cd pkgfile

  git describe | sed 's/^v//;s/-/./g'
}

prepare() {
  cd pkgfile

  meson build -D buildtype=release
}

build() {
  cd pkgfile

  ninja -C build
}

package() {
  cd pkgfile

  DESTDIR="$pkgdir" ninja -C build install
}

# vim: ft=sh syn=sh et