summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d3cfbfd0c4ec0c559372af61a00d04359c1f046d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Igor Dyatlov <dyatlov.igor@protonmail.com>

pkgname=worldpossible-scriptlauncher
pkgver=1.0.1
pkgrel=1
pkgdesc="A tool for running shell scripts with root privileges"
arch=('any')
url="https://github.com/endlessm/worldpossible-scriptlauncher"
license=('GPL2')
makedepends=('meson' 'python')
source=(${url}/archive/${pkgver}.tar.gz)
sha256sums=('75fb036f066019582312504e37b6f3fcc3cef0c278ad3d387a75ad746a71be11')

build() {
    arch-meson ${pkgname%-git}-$pkgver build
    meson compile -C build
}

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