405ae7f3fc
Switch to python3-* pkgs.
32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
# Template file for 'ReText'
|
|
pkgname=ReText
|
|
version=6.0.2
|
|
revision=4
|
|
noarch=yes
|
|
build_style=python3-module
|
|
pycompile_module="ReText"
|
|
makedepends="python3 qt5-tools ImageMagick"
|
|
depends="python3-PyQt5-webkit python3-Markups python3-Markdown
|
|
desktop-file-utils shared-mime-info"
|
|
short_desc="Simple editor for Markdown and reStructuredText"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="GPL-3"
|
|
homepage="http://retext.sourceforge.net"
|
|
distfiles="${SOURCEFORGE_SITE}/retext/ReText-${version%.*}/ReText-${version}.tar.gz"
|
|
checksum=ce28b20673627bd4e17c750d71b73e073776e291b2a1736dd561a1a24aa7f70b
|
|
|
|
post_install() {
|
|
lrelease locale/*.ts
|
|
local icondir=usr/share/icons/hicolor
|
|
|
|
for size in 16 22 24 32 48 128; do
|
|
vmkdir $icondir/${size}x${size}/apps
|
|
convert -resize $size icons/retext.png $DESTDIR/$icondir/${size}x${size}/apps/retext.png;
|
|
done
|
|
vmkdir $icondir/scalable/apps
|
|
vinstall icons/retext.svg 644 $icondir/scalable/apps
|
|
|
|
vinstall $FILESDIR/$pkgname.desktop 644 usr/share/applications
|
|
vmkdir usr/share/mime/packages
|
|
vcopy $FILESDIR/x-retext-*.xml usr/share/mime/packages
|
|
}
|