aboutsummaryrefslogtreecommitdiffstats
path: root/meta-skeleton
AgeCommit message (Expand)Author
2013-08-20hello-mod: Add comment for kernel module package namingYang Shi
2013-08-20Revert "hello-mod: Ensure the produced package name begins with kernel-module-"Yang Shi
2013-08-14meta-skeleton: layer.conf Should also have .bbappend in exampleSaul Wold
2013-08-13meta-skeleton: Add busybox config fragment exampleSaul Wold
2013-04-13hello-mod: Ensure the produced package name begins with kernel-module-Mark Hatle
2013-04-10meta-*/conf/layer.conf: tweak BBFILES commentPaul Eggleton
2013-03-20core-image-multilib-example: Location of core-image-sato.bb changedMark Hatle
2013-03-19layer.conf: avoid unnecessary early expansion with :=Christopher Larson
2013-03-18layer.conf: Add LAYERVERSION and LAYERDEPENDSwenzong.fan@windriver.com
2013-02-25meta-skeleton: Add example multilib usagesRichard Purdie
2012-10-03linux-yocto-custom: Clarify defconfig usageDarren Hart
2012-08-07linux-yocto-custom: Clarify usage and clear COMPATIBLE_MACHINEDarren Hart
2012-08-06useradd-example: use ${datadir} instead of /usr/share for packagingJavier Martinez Canillas
2012-07-03linux-yocto-custom: Remove linux-toolsDarren Hart
2012-06-18meta-skeleton: add linux-yocto-custom reference recipeBruce Ashfield
2012-04-10hello-mod: Move hello-mod from meta to meta-skeletonDarren Hart
2011-11-10useradd-example.bb: update example documentation commentsScott Garman
2011-07-01useradd-example: example recipe for using inherit useraddScott Garman
2011-05-18Add a skeleton for init scriptsRobert Yang
2011-05-18Add the layer meta-skeletonRobert Yang
_SNAPSHOT = "atlas310_11212008" _TARBALL_SERVER = "http://git.moblin.org/repos/users/rusty" PV="r0" SRC_URI = "${_TARBALL_SERVER}/helix-libs_${_SNAPSHOT}.tar.bz2 \ file://helix-libs/helix-player.pc \ file://helix-libs/add-clutter.patch;patch=1" S = "${WORKDIR}/helix-libs_${_SNAPSHOT}" export BUILD_ROOT=${STAGING_DIR_HOST}${libdir}/ribosome export BUILDRC=${BUILD_ROOT}/buildrc export SYSTEM_ID=linux-2.2-libc6-gcc32-i586 export BUILD=$BUILD_ROOT/bin/build.py COMPATIBLE_HOST = '(i.86.*-linux)' do_compile() { ${BUILD} -k -trelease -mclutter -Phelix-client-all-defines clutter } do_install() { mkdir -p ${D}/opt/helix/lib mkdir -p ${D}/opt/helix/include mkdir -p ${D}${libdir}/pkgconfig install -m 0644 clientapps/clutter/player.h ${D}/opt/helix/include/ install -m 0644 ../helix-libs/helix-player.pc ${D}${libdir}/pkgconfig install -m 0644 release/*.so ${D}/opt/helix/lib install -d ${D}${libdir} install -m 0644 release/libhelix-player.so ${D}${libdir} } sysroot_stage_all_append() { sysroot_stage_dir ${D}/opt/helix ${SYSROOT_DESTDIR}/${STAGING_DIR_TARGET}/helix } FILES_${PN} = "/usr/lib/libhelix-player.so" FILES_${PN} += "/opt/helix/lib" FILES_${PN}-dev = "/usr/lib/pkgconfig" FILES_${PN}-dev += "/opt/helix/include"