blob: dfc80895c21326392f98a4e8323cbb5e8a67d090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# emelfm2 OE build file
# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
DESCRIPTION="emelFM2 is a GTK2+ file manager that implements the popular \
two-pane design."
HOMEPAGE="http://dasui.prima.de/e2wiki/"
SRC_URI="http://dasui.prima.de/~tooar/emelfm2-${PV}.tar.gz \
file://makefile.patch;patch=1"
DEPENDS="gtk+"
FILES_${PN} += " /usr/lib/emelfm2/plugins/ /usr/share/pixmaps/emelfm2/"
do_compile() {
oe_runmake PREFIX=/usr all
}
do_install() {
oe_runmake BIN_DIR=${D}/usr/bin PREFIX=${D}/usr install
}
|