summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7fcb8fd7d6c4bfe04a7fa12a9799532bdc8dfdaf (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
# Maintainer: Kyle Laker <kyle@laker.email>

pkgname=lm-warp-git
pkgver=0.0.1
pkgrel=1
pkgdesc="Share files across the LAN by Linux Mint"
arch=("x86_64")
_github="github.com/linuxmint/warp"
url="https://$_github"
depends=(pygobject-devel python-setproctitle python-zeroconf)
makedepends=(git meson)
source=("$pkgname::git://$_github/")
sha512sums=('SKIP')

build() {
  cd "$srcdir"
  pwd
  meson --prefix /usr --buildtype=plain "$pkgname" build
  ninja -C build
}

package() {
  DESTDIR="$pkgdir" ninja -C build install
}