summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3d651e870aeb20af73335df64409c84871ebce73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pkgname=confedi-git
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)
url="https://bitbucket.org/masterofhoppips/configuration-editor.git"
source=("git+$url")

package() {
    mkdir -p "$pkgdir"/usr/bin
    cp configuration-editor/src/program.py "$pkgdir"/usr/bin/$pkgname
    chmod +x "$pkgdir"/usr/bin/$pkgname
}