summaryrefslogtreecommitdiff
path: root/automake
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2004-09-29 15:10:37 +0000
committerMatthias Hentges <oe@hentges.net>2004-09-29 15:10:37 +0000
commit6a4043e6d36d241ada95003c9014264a4c998c00 (patch)
tree91313cceeaee632a39afac542121c444e93d9129 /automake
parent2559b746a63dac206bf8ea670e8acecd8a46e806 (diff)
Merge bk://openembedded@openembedded.bkbits.net/packages
into mhcln01.hentges.local:/home/mhentges/OpenEmbedded/packages 2004/09/29 16:41:23+02:00 mn-logistik.de!schurig fix some INHERIT += "oelint" warnings BKrev: 415ad06dOGp0_TI_vyRVCWHZOjrasg
Diffstat (limited to 'automake')
-rw-r--r--automake/automake_1.8.4.oe20
1 files changed, 20 insertions, 0 deletions
diff --git a/automake/automake_1.8.4.oe b/automake/automake_1.8.4.oe
index e69de29bb2..dd802afdc1 100644
--- a/automake/automake_1.8.4.oe
+++ b/automake/automake_1.8.4.oe
@@ -0,0 +1,20 @@
+DESCRIPTION = "A tool for automatically generating Makefiles."
+LICENSE = "GPL"
+HOMEPAGE = "http://www.gnu.org/software/automake/"
+SECTION = "devel"
+
+SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2"
+FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/automake-${PV}"
+
+inherit autotools
+
+do_install () {
+ oe_runmake 'DESTDIR=${D}' install
+ install -d ${D}/${datadir}
+ if [ ! -e ${D}/${datadir}/aclocal ]; then
+ ln -sf aclocal-1.8 ${D}/${datadir}/aclocal
+ fi
+ if [ ! -e ${D}/${datadir}/automake ]; then
+ ln -sf automake-1.8 ${D}/${datadir}/automake
+ fi
+}