# HG changeset patch # User Hans-G?nter Theisgen # Date 1590300295 -3600 # Node ID 162ff92181375588c04c22e69de21b46c1ff0e80 # Parent 00ef8230cd61ae9ac63454622d7949b191a95355 created recipes for xcb-util-xrm and xcb-util-xrm-dev diff -r 00ef8230cd61 -r 162ff9218137 xcb-util-xrm-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xcb-util-xrm-dev/receipt Sun May 24 07:04:55 2020 +0100 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="xcb-util-xrm-dev" +VERSION="1.3" +CATEGORY="development" +SHORT_DESC="Development files for xcb-util-xrm." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://github.com/Airblader/xcb-util-xrm" + +WANTED="xcb-util-xrm" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/*.la $fs/usr/lib +} diff -r 00ef8230cd61 -r 162ff9218137 xcb-util-xrm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xcb-util-xrm/receipt Sun May 24 07:04:55 2020 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="xcb-util-xrm" +VERSION="1.3" +CATEGORY="x-window" +SHORT_DESC="XCB utility functions for the X resource manager" +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://github.com/Airblader/xcb-util-xrm" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/Airblader/xcb-util-xrm/releases/download/v$VERSION/$TARBALL" + +DEPENDS="libxcb xcb-util" +BUILD_DEPENDS="libxcb-dev xcb-util-dev xorg-libX11-dev" + +compile_rules() +{ + ./configure $CONFIGURE_ARGS && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +}