2014-05-02 07:45:57 +00:00
|
|
|
# Template file for 'ReText'
|
|
|
|
pkgname=ReText
|
2014-08-05 18:09:03 +00:00
|
|
|
version=5.0.0
|
|
|
|
revision=1
|
2014-05-02 07:45:57 +00:00
|
|
|
build_style="python-module"
|
2014-06-18 11:36:31 +00:00
|
|
|
python_versions="3.4"
|
|
|
|
hostmakedepends="python3.4 ImageMagick"
|
|
|
|
depends="python3.4-Markups python3.4-pyside python3.4-Markdown"
|
|
|
|
short_desc="Editor for Markdown markup languages"
|
2014-05-02 07:45:57 +00:00
|
|
|
maintainer="Enno Boland <eb@s01.de>"
|
2014-06-18 11:36:31 +00:00
|
|
|
noarch="yes"
|
2014-05-02 07:45:57 +00:00
|
|
|
license="GPL3"
|
|
|
|
homepage="http://retext.sourceforge.net"
|
2014-11-26 22:33:00 +00:00
|
|
|
update_ignore="*beta*"
|
|
|
|
distfiles="${SOURCEFORGE_SITE}/retext/ReText-${version%.*}/ReText-${version}.tar.gz"
|
2014-08-05 18:09:03 +00:00
|
|
|
checksum=acf097c6154ec99a2322f55a200f411e97b8eb0ca0ba411c887ba58ce46365e0
|
2014-05-02 07:45:57 +00:00
|
|
|
|
|
|
|
post_install() {
|
|
|
|
local icondir=usr/share/icons/hicolor
|
|
|
|
|
|
|
|
for size in 16 22 24 32 48 128; do
|
|
|
|
vmkdir $icondir/${size}x${size}/apps
|
2014-05-03 21:02:21 +00:00
|
|
|
convert -resize $size icons/retext.png $DESTDIR/$icondir/${size}x${size}/apps/retext.png;
|
2014-05-02 07:45:57 +00:00
|
|
|
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
|
|
|
|
}
|