diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-04-08 15:09:02 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-04-08 15:09:02 +0000 |
commit | 5be12a829a311ebf257eb6e4864b04a706e9b480 (patch) | |
tree | 88790f6d85dc55e6a052e4eb06402a8fb3f31ebd /meta | |
parent | 32cb20989530f3786c8f956f2693a93693e5010a (diff) | |
download | poky-5be12a829a311ebf257eb6e4864b04a706e9b480.tar.gz |
setserial: merge with OE (no code changes)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4199 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/setserial/setserial_2.17.bb | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/meta/packages/setserial/setserial_2.17.bb b/meta/packages/setserial/setserial_2.17.bb index 4646df818a..4e0d1b66e4 100644 --- a/meta/packages/setserial/setserial_2.17.bb +++ b/meta/packages/setserial/setserial_2.17.bb | |||
@@ -1,12 +1,18 @@ | |||
1 | DESCRIPTION = "setserial is a program designed to set and/or report the configuration information associated with a serial port" | ||
2 | HOMEPAGE = "http://setserial.sourceforge.net" | ||
3 | AUTHOR = "Theodore Ts'o <tytso@mit.edu>" | ||
1 | SECTION = "console/utils" | 4 | SECTION = "console/utils" |
2 | SRC_URI = "http://fresh.t-systems-sfr.com/linux/src/setserial-2.17.tar.gz" | ||
3 | LICENSE = "GPL" | 5 | LICENSE = "GPL" |
4 | PR = "r1" | 6 | PR = "r2" |
7 | |||
5 | inherit autotools | 8 | inherit autotools |
6 | 9 | ||
10 | SRC_URI = "${SOURCEFORGE_MIRROR}/setserial/${PN}-${PV}.tar.gz" | ||
11 | |||
7 | do_install() { | 12 | do_install() { |
8 | install -d ${D}${base_bindir} | 13 | install -d ${D}${bindir} |
9 | install -d ${D}/usr/man/man8 | 14 | install -d ${D}${mandir}/man8 |
10 | install -d ${D}${mandir} | 15 | |
11 | autotools_do_install | 16 | install -m 0755 ${S}/setserial ${D}${bindir} |
17 | install -m 0644 ${S}/setserial.8 ${D}${mandir}/man8 | ||
12 | } | 18 | } |