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

pkgname=lm-warp-git
pkgver=0.0.1
pkgrel=1
pkgdesc="Share files across the LAN"
arch=("x86_64")
_github="github.com/linuxmint/warp"
url="https://$_github"
license=(MIT)
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
}