texmaker: initial commit

This commit is contained in:
Tim Biermann 2019-06-11 23:45:49 +02:00
parent d4354f5cc4
commit e8fee23e66
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 71 additions and 0 deletions

41
texmaker/.footprint Normal file
View File

@ -0,0 +1,41 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/texmaker
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/texmaker.desktop
drwxr-xr-x root/root usr/share/metainfo/
-rw-r--r-- root/root usr/share/metainfo/texmaker.appdata.xml
drwxr-xr-x root/root usr/share/pixmaps/
-rw-r--r-- root/root usr/share/pixmaps/texmaker.png
drwxr-xr-x root/root usr/share/texmaker/
-rw-r--r-- root/root usr/share/texmaker/doc1.png
-rw-r--r-- root/root usr/share/texmaker/doc10.png
-rw-r--r-- root/root usr/share/texmaker/doc11.png
-rw-r--r-- root/root usr/share/texmaker/doc12.png
-rw-r--r-- root/root usr/share/texmaker/doc13.png
-rw-r--r-- root/root usr/share/texmaker/doc14.png
-rw-r--r-- root/root usr/share/texmaker/doc15.png
-rw-r--r-- root/root usr/share/texmaker/doc16.png
-rw-r--r-- root/root usr/share/texmaker/doc17.png
-rw-r--r-- root/root usr/share/texmaker/doc2.png
-rw-r--r-- root/root usr/share/texmaker/doc20.png
-rw-r--r-- root/root usr/share/texmaker/doc21.png
-rw-r--r-- root/root usr/share/texmaker/doc22.png
-rw-r--r-- root/root usr/share/texmaker/doc3.png
-rw-r--r-- root/root usr/share/texmaker/doc4.png
-rw-r--r-- root/root usr/share/texmaker/doc5.png
-rw-r--r-- root/root usr/share/texmaker/doc6.png
-rw-r--r-- root/root usr/share/texmaker/doc6bis.png
-rw-r--r-- root/root usr/share/texmaker/doc7.png
-rw-r--r-- root/root usr/share/texmaker/doc8.png
-rw-r--r-- root/root usr/share/texmaker/doc9.png
-rw-r--r-- root/root usr/share/texmaker/hardwordwrap_selection_80col.tms
-rw-r--r-- root/root usr/share/texmaker/texmaker.svg
-rw-r--r-- root/root usr/share/texmaker/texmaker128x128.png
-rw-r--r-- root/root usr/share/texmaker/texmaker16x16.png
-rw-r--r-- root/root usr/share/texmaker/texmaker22x22.png
-rw-r--r-- root/root usr/share/texmaker/texmaker32x32.png
-rw-r--r-- root/root usr/share/texmaker/texmaker48x48.png
-rw-r--r-- root/root usr/share/texmaker/texmaker64x64.png
-rw-r--r-- root/root usr/share/texmaker/titlecase_selection.tms

5
texmaker/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/FtWx7XBrcVu3z+HndjF+MN9d329SvKro7zsoOV/mn0Zv4FtBrW7Ys+19mHkRVx6iW97o8jmZxzLmrf6MK2+Q4=
SHA256 (Pkgfile) = 2d6aa11d34f01403c5218fa26d7464606692310c16c88787ef5fe0da4af7cf12
SHA256 (.footprint) = c1c8b0f32e43b20e289e5809eba6782df4712b78124fcc3aead6f63eb3a91fae
SHA256 (texmaker-5.0.3.tar.bz2) = 6074dffa82c431f8727c39e046f62cb70f5fe1457f158b46306e8f490b4f326f

25
texmaker/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# 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
version=5.0.3
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 '{}' \+
}