27 lines
916 B
Bash
27 lines
916 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=setconf
|
|
pkgver=0.7.7
|
|
pkgrel=1
|
|
pkgdesc='Utility for easily changing settings in configuration files'
|
|
arch=(any)
|
|
url='https://$pkgname.roboticoverlords.org/'
|
|
license=(GPL-2)
|
|
depends=(python)
|
|
source=(#"https://$pkgname.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc} # TLS broken
|
|
"https://github.com/xyproto/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz")
|
|
sha512sums=('18105c879f5e3fa0c85d75be9e6083708807882c35c6033888ef5454822e34ec21614818239ca839b8c3306cdf000f0d955d8040e41520501e54953ef171941e')
|
|
# 'SKIP')
|
|
validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
install -Dm755 "$pkgname.py" "$pkgdir/usr/bin/$pkgname"
|
|
install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
|
|
|
|
install -Dm644 COPYING -t $pkgdir/usr/share/licenses/$pkgname
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|