diff options
Diffstat (limited to 'recipes/mtpaint/mtpaint_3.02.bb')
-rw-r--r-- | recipes/mtpaint/mtpaint_3.02.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/mtpaint/mtpaint_3.02.bb b/recipes/mtpaint/mtpaint_3.02.bb new file mode 100644 index 0000000000..fea8299534 --- /dev/null +++ b/recipes/mtpaint/mtpaint_3.02.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "mtPaint is a simple painting program" +SECTION = "x11/graphics" +DEPENDS = "gtk+ jpeg" +HOMEPAGE = "http://mtpaint.sf.net" +PR = "r1" + +SRC_URI = "${SOURCEFORGE_MIRROR}/mtpaint/mtpaint-3.02.tar.bz2" + +do_configure() { + /bin/bash ./configure gtk2 + cat > _conf.txt <<EOF +CC = ${CC} +MT_VERSION=mtPaint 3.02 +MT_DATE=2006-10-14 +LDFLAG = ${LDFLAGS} `pkg-config --libs gtk+-2.0` -ljpeg +CFLAG = ${CFLAGS} `pkg-config --cflags gtk+-2.0` -DVERSION="\"mtPaint 3.02"\" -DU_JPEG +subdirs = src +BIN_INSTALL="/usr/local/bin" +EOF +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 src/mtpaint ${D}${bindir} +} + |