diff options
-rw-r--r-- | minicom/minicom_2.1.oe | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/minicom/minicom_2.1.oe b/minicom/minicom_2.1.oe index e69de29bb2..5892236714 100644 --- a/minicom/minicom_2.1.oe +++ b/minicom/minicom_2.1.oe @@ -0,0 +1,11 @@ +DEPENDS = "ncurses gettext-native" + +SRC_URI = "http://alioth.debian.org/download.php/123/minicom-${PV}.tar.gz \ + file://configure.patch;patch=1" + +inherit autotools + +do_install() { + for d in doc extras man intl lib src; do make -C $d DESTDIR=${D} install; done +} + |