39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
# Template file for 'setconf'
|
|
pkgname=setconf
|
|
version=0.7.5
|
|
revision=1
|
|
noarch=yes
|
|
build_style=python-module
|
|
pycompile_module="setconf.py"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python python-setuptools"
|
|
short_desc="Utility for changing settings in configuration textfiles (Python2)"
|
|
maintainer="Duncaen <duncaen@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://setconf.roboticoverlords.org/"
|
|
distfiles="https://github.com/xyproto/setconf/archive/${version}.tar.gz"
|
|
checksum=422667f60a49075b6ce641e27abc0d8956b17736c5c6083f45a8f07e37fcf71e
|
|
|
|
alternatives="
|
|
setconf:setconf:/usr/bin/setconf2
|
|
setconf:setconf.1:/usr/share/man/man1/setconf2.1"
|
|
|
|
post_install() {
|
|
vman setconf.1 setconf2.1
|
|
}
|
|
|
|
python3-setconf_package() {
|
|
noarch=yes
|
|
depends="python3 python3-setuptools"
|
|
pycompile_module="setconf.py"
|
|
alternatives="
|
|
setconf:setconf:/usr/bin/setconf3
|
|
setconf:setconf.1:/usr/share/man/man1/setconf3.1"
|
|
short_desc="${short_desc/2/3}"
|
|
pkg_install() {
|
|
vmove usr/bin/setconf3
|
|
vmove usr/lib/python3*
|
|
vman setconf.1 setconf3.1
|
|
}
|
|
}
|