# HG changeset patch # User Richard Dunbar # Date 1355752402 0 # Node ID d7887c01c6e34d4654165b4ebcdc55adb4f9e472 # Parent fbcef2e7a3e30c6dbb7c747f871c85ecdc90ffaa Add mtdev diff -r fbcef2e7a3e3 -r d7887c01c6e3 mtdev-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mtdev-dev/receipt Mon Dec 17 13:53:22 2012 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="mtdev-dev" +VERSION="1.1.3" +CATEGORY="development" +SHORT_DESC="mtdev devel files" +MAINTAINER="mojo@slitaz.org" +WEB_SITE="http://bitmath.org/code/mtdev/" +WANTED="mtdev" + +DEPENDS="mtdev" + +# 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 +} \ No newline at end of file diff -r fbcef2e7a3e3 -r d7887c01c6e3 mtdev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mtdev/receipt Mon Dec 17 13:53:22 2012 +0000 @@ -0,0 +1,25 @@ +# SliTaz package receipt. + +PACKAGE="mtdev" +VERSION="1.1.3" +CATEGORY="development" +SHORT_DESC="Multitouch Protocol Translation Library" +MAINTAINER="mojo@slitaz.org" +WEB_SITE="http://bitmath.org/code/mtdev/" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="$WEB_SITE$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./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 + cp -a $install/usr/bin $fs/usr +}