summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f47c2037f54a9feafdcc9ae6d6fb9563294bb748 (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
#!/usr/bin/env bash
# Maintainer: Xenose <xenose@live.com>
# Contributor: Xenose
pkgname=split-run-git
pkgver=1.0.0
pkgrel=1
arch=('any')
url="https://gitlab.com/Xenose/split-run.git"
license=('GPL3')
depends=()
makedepends=('clang' 'git' 'make')
arch=('any')
pkgdesc="Launches programs from the terminal and the closes the terminal automatically"
provides=('srun')
conflicts=('srun')
source=("git+$url")
md5sums=('SKIP')

build() {
	cd split-run
	make
}

package() {
	cd split-run
	sudo make install
}