41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Template file for 'icdiff'
|
|
pkgname=icdiff
|
|
version=1.9.5
|
|
revision=2
|
|
wrksrc="${pkgname}-release-${version}"
|
|
archs=noarch
|
|
build_style=python-module
|
|
pycompile_module="icdiff.py"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python python-setuptools"
|
|
short_desc="Improved colored diff (Python2)"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="Python-2.0"
|
|
homepage="http://www.jefftk.com/icdiff"
|
|
changelog="https://github.com/jeffkaufman/icdiff/raw/master/ChangeLog"
|
|
distfiles="https://github.com/jeffkaufman/icdiff/archive/release-${version}.tar.gz"
|
|
checksum=f2e3df30e93df92224538ef3c62a73891af92de4caf94e8117582835e1040fc7
|
|
|
|
alternatives="
|
|
icdiff:icdiff:/usr/bin/icdiff2
|
|
icdiff:git-icdiff:/usr/bin/git-icdiff2"
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-icdiff_package() {
|
|
archs=noarch
|
|
depends="python3 python3-setuptools"
|
|
pycompile_module="icdiff.py"
|
|
alternatives="
|
|
icdiff:icdiff:/usr/bin/icdiff3
|
|
icdiff:git-icdiff:/usr/bin/git-icdiff3"
|
|
short_desc="${short_desc/2/3}"
|
|
pkg_install() {
|
|
vmove usr/bin/icdiff3
|
|
vmove usr/bin/git-icdiff3
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|