summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c6281a166b4f07e5487bebc05cc92eb4f8b52f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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")
md5sums=('SKIP')

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