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