wok rev 23799
created recipes for xcb-util-xrm and xcb-util-xrm-dev
author | Hans-G?nter Theisgen |
---|---|
date | Sun May 24 07:04:55 2020 +0100 (2020-05-24) |
parents | 00ef8230cd61 |
children | e75bceccda65 |
files | xcb-util-xrm-dev/receipt xcb-util-xrm/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xcb-util-xrm-dev/receipt Sun May 24 07:04:55 2020 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xcb-util-xrm-dev" 1.7 +VERSION="1.3" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Development files for xcb-util-xrm." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +WEB_SITE="https://github.com/Airblader/xcb-util-xrm" 1.13 + 1.14 +WANTED="xcb-util-xrm" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + mkdir -p $fs/usr/lib 1.20 + 1.21 + cp -a $install/usr/include $fs/usr 1.22 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.23 + cp -a $install/usr/lib/*.la $fs/usr/lib 1.24 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xcb-util-xrm/receipt Sun May 24 07:04:55 2020 +0100 2.3 @@ -0,0 +1,29 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xcb-util-xrm" 2.7 +VERSION="1.3" 2.8 +CATEGORY="x-window" 2.9 +SHORT_DESC="XCB utility functions for the X resource manager" 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="MIT" 2.12 +WEB_SITE="https://github.com/Airblader/xcb-util-xrm" 2.13 + 2.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.15 +WGET_URL="https://github.com/Airblader/xcb-util-xrm/releases/download/v$VERSION/$TARBALL" 2.16 + 2.17 +DEPENDS="libxcb xcb-util" 2.18 +BUILD_DEPENDS="libxcb-dev xcb-util-dev xorg-libX11-dev" 2.19 + 2.20 +compile_rules() 2.21 +{ 2.22 + ./configure $CONFIGURE_ARGS && 2.23 + make && 2.24 + make install 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + mkdir -p $fs/usr/lib 2.31 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.32 +}