diff options
Diffstat (limited to 'packages/tin/tin_1.9.1.bb')
-rw-r--r-- | packages/tin/tin_1.9.1.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/tin/tin_1.9.1.bb b/packages/tin/tin_1.9.1.bb new file mode 100644 index 0000000000..560184f413 --- /dev/null +++ b/packages/tin/tin_1.9.1.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Tin is a powerful text mode news reader." +SECTION = "console/network" +DEPENDS = "ncurses pcre" +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "ftp://ftp.tin.org/pub/news/clients/tin/unstable/tin-${PV}.tar.gz \ + file://m4.patch;patch=1" + +inherit autotools + +PARALLEL_MAKE = "" +EXTRA_OECONF = "--with-screen=ncurses --with-pcre=${STAGING_LIBDIR}/.." + +export BUILD_CFLAGS += "-I${S}/include -DHAVE_CONFIG_H" + +do_configure() { + oe_runconf +} + +do_compile() { + cd src && oe_runmake +} |