More section fixes
[vuplus_openembedded] / automake / automake_1.8.2.oe
1 SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2 \
2            file://automake182-update-configscripts.patch;patch=1;pnum=1"
3 DESCRIPTION = "A tool for automatically generating Makefiles."
4 SECTION = "devel"
5
6 FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/automake-${PV}"
7
8 inherit autotools
9
10 do_install () {
11         oe_runmake 'DESTDIR=${D}' install
12         install -d ${D}/${datadir}
13         if [ ! -e ${D}/${datadir}/aclocal ]; then
14                 ln -sf aclocal-1.8 ${D}/${datadir}/aclocal
15         fi
16         if [ ! -e ${D}/${datadir}/automake ]; then
17                 ln -sf automake-1.8 ${D}/${datadir}/automake
18         fi
19 }