summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8ced215be47344272cdfa4a69532433ec27c6e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkgname=confedi-git-bin
pkgver=1
pkgrel=1
pkgdesc="Confedi is designed to help with changing configuration files with one command."
arch=(any)
license=('GPL')
depends=(python3)
makedepends=(git pyinstaller)
url="https://bitbucket.org/masterofhoppips/configuration-editor.git"
source=("git+$url")
md5sums=('SKIP')

build(){
	cd configuraton-editor
	pyinstaller program.py -F
	cd ..
}

package() {
	mkdir -p "$pkgdir"/usr/bin
	cp configuration-editor/src/dist/program "$pkgdir"/usr/bin/$pkgname
}