contrib/texmaker/Pkgfile

26 lines
684 B
Plaintext
Raw Normal View History

2019-06-11 23:45:49 +02:00
# Description: Free cross-platform LaTeX editor
# URL: http://www.xm1math.net/texmaker/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: qt5, texlive
name=texmaker
2020-01-05 00:40:53 +01:00
version=5.0.4
2019-06-11 23:45:49 +02:00
release=1
source=(http://www.xm1math.net/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
/usr/lib/qt5/bin/qmake PREFIX=$PKG/usr \
DESKTOPDIR=$PKG/usr/share/applications \
ICONDIR=$PKG/usr/share/pixmaps \
METAINFODIR=$PKG/usr/share/metainfo \
texmaker.pro
make
make install
find $PKG/usr/share/texmaker \
-regex '.*/\(COPYING\|.*qm\|.*aff\|.*dic\|.*txt\|.*html\|.*tmx\|README\|AUTHORS\|INSTALL\|ChangeLog\|NEWS\|TODO\).*' \
-exec rm '{}' \+
}