diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-18 14:39:22 +0200 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-18 14:39:22 +0200 |
commit | cc9e1d405e9336bf771bba2e2125c38fdde5aa10 (patch) | |
tree | fcf7696878d91dafc80d375611ee110032c93447 /recipes/cdstatus/cdstatus_0.97.01.bb | |
parent | 99d5ba358e3f063f87300fa4598f331431303217 (diff) |
cdstatus: updated to 0.97.01
Diffstat (limited to 'recipes/cdstatus/cdstatus_0.97.01.bb')
-rw-r--r-- | recipes/cdstatus/cdstatus_0.97.01.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/recipes/cdstatus/cdstatus_0.97.01.bb b/recipes/cdstatus/cdstatus_0.97.01.bb new file mode 100644 index 0000000000..dd20e04aa1 --- /dev/null +++ b/recipes/cdstatus/cdstatus_0.97.01.bb @@ -0,0 +1,27 @@ +# cdstatus OE build file + +PR ="r0" +LICENSE="GPL" +HOMEPAGE = "http://cdstatus.sourceforge.net/" +FILES_${PN} += "${datadir}/cdstatus.cfg" +# need __USE_MISC to get h_addr macro in netdb.h +CFLAGS += -D__USE_MISC + +SRC_URI="${SOURCEFORGE_MIRROR}/cdstatus/cdstatus-0.97.01.tar.gz \ + file://Makefile.am.patch;patch=1 \ + file://cddb_connect_to_server.c.patch;patch=1 \ + file://cdstatus.patch;patch=1" + +S="${WORKDIR}/cdstatus-0.97.01" + +inherit autotools + +do_install() { + install -d 0755 ${D}/${bindir} + install -d 0755 ${D}/${datadir} + install -d 0755 ${D}/${mandir} + install -m 0755 src/cdstatus ${D}/${bindir} + install -m 0644 cdstatus.cfg ${D}/${datadir} + install -m 0644 cdstatus.1 ${D}/${mandir} + +} |