diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-04-11 12:31:14 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-11 12:31:14 +0000 |
commit | 530227dfcd82122db8963f9014b906122fa6f62d (patch) | |
tree | b6bb6f56dece12bb69617bee4691257e33689fad /packages/texmaker | |
parent | d74366a6f1a7f8282c1ca5426e8f0940db0f3a40 (diff) |
add texmaker, a free cross-platform LaTeX editor based on Qt4
TADAAA, this is the first Qt4 application in OE
Diffstat (limited to 'packages/texmaker')
-rw-r--r-- | packages/texmaker/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/texmaker/texmaker_1.3.bb | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/packages/texmaker/.mtn2git_empty b/packages/texmaker/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/texmaker/.mtn2git_empty diff --git a/packages/texmaker/texmaker_1.3.bb b/packages/texmaker/texmaker_1.3.bb new file mode 100644 index 0000000000..0ca09032cb --- /dev/null +++ b/packages/texmaker/texmaker_1.3.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "TeXmaker is a free cross-platform LaTeX editor" +HOMEPAGE = "http://www.xm1math.net/texmaker" +SECTION = "x11/apps" +LICENSE = "GPL" +DEPENDS = "qt4x11" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" + +SRC_URI = "http://www.xm1math.net/texmaker/texmaker-${PV}.tar.bz2" + +inherit qmake qt4x11 + +do_install() { + install -d ${D}${bindir} + install -m 0755 texmaker ${D}${bindir}/texmaker +} + |