summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d910577957c7658d0925b045a64678576abe42f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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(){
	pyinstaller configuration-editor/src/program.py -F
}

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