Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
26 lines
1008 B
BlitzBasic
26 lines
1008 B
BlitzBasic
SUMMARY = "Catfish is a handy file searching tool for linux and unix"
|
|
SECTION = "x11/application"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4"
|
|
|
|
inherit xfce-app python_setuptools_build_meta gtk-icon-cache mime-xdg features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
|
|
|
|
DEPENDS += "python3-distutils-extra-native"
|
|
|
|
SRC_URI[sha256sum] = "fdae9b73cc754a50716bb04b958aa31dbd7e94047068b7207f2ae313a7d58b99"
|
|
|
|
FILES:${PN} += "${datadir}/metainfo"
|
|
|
|
RDEPENDS:${PN} += "python3-pygobject python3-dbus"
|
|
|
|
do_install:append() {
|
|
#
|
|
# Until catfish upstream figures out a way to overcome this buildpath issue, we need to do such adjustments here.
|
|
#
|
|
sed -i -e 's#${RECIPE_SYSROOT_NATIVE}##g' ${D}${datadir}/applications/org.xfce.Catfish.desktop
|
|
sed -i -e 's#${RECIPE_SYSROOT_NATIVE}##g' ${D}${PYTHON_SITEPACKAGES_DIR}/catfish_lib/catfishconfig.py
|
|
rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/catfish_lib/__pycache__/catfishconfig.*.pyc
|
|
}
|