# HG changeset patch # User Christopher Rogers # Date 1295494469 0 # Node ID 4c286f93dae8dc18f4024f0b879c89820dc0745e # Parent 270cb2f9020e680e131f6c9d8245f8f48eb91de5 Add libxkbfile. diff -r 270cb2f9020e -r 4c286f93dae8 libxkbfile-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxkbfile-dev/receipt Thu Jan 20 03:34:29 2011 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="libxkbfile-dev" +VERSION="1.0.7" +CATEGORY="development" +SHORT_DESC="devel files for libxkbfile" +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="libxkbfile" +WANTED="libxkbfile" +WEB_SITE="http://xorg.freedesktop.org/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} + diff -r 270cb2f9020e -r 4c286f93dae8 libxkbfile/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxkbfile/receipt Thu Jan 20 03:34:29 2011 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="libxkbfile" +VERSION="1.0.7" +CATEGORY="x-window" +SHORT_DESC="X11 keyboard file manipulation library" +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="xorg-libX11" +BUILD_DEPENDS="xorg-libX11-dev xorg-util-macros" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://xorg.freedesktop.org/" +WGET_URL="$WEB_SITE/releases/individual/lib/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --disable-static \ + $CONFIGURE_ARGS && + make -j 4 && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +} +