diff options
author | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
commit | 4b46c1f6e891b1ddd5968536440b888661fade3e (patch) | |
tree | e0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/packages/irda-utils/irda-utils_0.9.16.bb | |
download | poky-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz |
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/irda-utils/irda-utils_0.9.16.bb')
-rw-r--r-- | openembedded/packages/irda-utils/irda-utils_0.9.16.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/openembedded/packages/irda-utils/irda-utils_0.9.16.bb b/openembedded/packages/irda-utils/irda-utils_0.9.16.bb new file mode 100644 index 0000000000..d99846f8cd --- /dev/null +++ b/openembedded/packages/irda-utils/irda-utils_0.9.16.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | DESCRIPTION = "Provides common files needed to use IrDA. \ | ||
2 | IrDA allows communication over Infrared with other devices \ | ||
3 | such as phones and laptops." | ||
4 | SECTION = "base" | ||
5 | LICENSE = "GPL" | ||
6 | PR = "r2" | ||
7 | |||
8 | SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \ | ||
9 | file://configure.patch;patch=1 \ | ||
10 | file://m4.patch;patch=1 \ | ||
11 | file://init" | ||
12 | |||
13 | inherit autotools update-rc.d | ||
14 | |||
15 | INITSCRIPT_NAME = "irattach" | ||
16 | INITSCRIPT_PARAMS = "defaults 20" | ||
17 | |||
18 | do_compile () { | ||
19 | oe_runmake -e -C irattach | ||
20 | oe_runmake -e -C irdaping | ||
21 | } | ||
22 | |||
23 | do_install () { | ||
24 | install -d ${D}${sbindir} | ||
25 | oe_runmake -C irattach ROOT="${D}" install | ||
26 | oe_runmake -C irdaping ROOT="${D}" install | ||
27 | |||
28 | install -d ${D}${sysconfdir}/init.d | ||
29 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/irattach | ||
30 | } | ||