diff options
Diffstat (limited to 'recipes/soundtracker/soundtracker-gtk2_0.6.7.bb')
-rw-r--r-- | recipes/soundtracker/soundtracker-gtk2_0.6.7.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes/soundtracker/soundtracker-gtk2_0.6.7.bb b/recipes/soundtracker/soundtracker-gtk2_0.6.7.bb new file mode 100644 index 0000000000..8070b89270 --- /dev/null +++ b/recipes/soundtracker/soundtracker-gtk2_0.6.7.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Music composition program in the style of AMIGA Impulse Tracker" +DEPENDS = "gtk+ libgnomeui audiofile esound alsa-lib" +LICENSE = "GPL" +SECTION = "x11/multimedia" +PR = "r1" + +SRC_URI = "http://mutab0r.chat.ru/soundtracker-0.6.7.gtk2.tar.bz2" +S = "${WORKDIR}/soundtracker-${PV}.gtk2" + +inherit autotools + +EXTRA_OECONF = "--disable-asm" + +do_configure() { + oe_runconf +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 app/soundtracker ${D}${bindir} +} |