summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dda54ef5681eaffbad56aaa87f66f6beac68a7af (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: Mark Wagie <mark dot wagie at tutanota dot com>
# Contributor: Balló György <ballogyor+arch at gmail dot com>
pkgname=office-runner
pkgver=1.0.3
pkgrel=1
pkgdesc="Lighthearted tool to temporarily inhibit GNOME's suspend on lid close behavior"
arch=('x86_64')
url="https://gitlab.gnome.org/GNOME/office-runner"
license=('GPL3')
depends=('gtk3')
makedepends=('gnome-common')
source=("https://gitlab.gnome.org/GNOME/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('63eaf719c71adc98abbc5c4adb538a196fab783f0417cdfd863c6b4b27334189')

build() {
	cd "$pkgname-$pkgver"
	./autogen.sh
	./configure --prefix=/usr
	make
}

package() {
	cd "$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install
}