# HG changeset patch # User Christophe Lincoln # Date 1252534475 -7200 # Node ID b36b7d0594afc353a5ebb1c4482701d50e988ef5 # Parent e3e2ae8e9c2e0d3aa70e9d3aaf46e64f35ed32ff Fix missing pth-dev package diff -r e3e2ae8e9c2e -r b36b7d0594af pth-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pth-dev/receipt Thu Sep 10 00:14:35 2009 +0200 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="pth-dev" +VERSION="2.0.7" +CATEGORY="system-tools" +SHORT_DESC="PTH devel files." +MAINTAINER="fraazz@altern.org" +WANTED="pth" +WEB_SITE="http://www.gnu.org/software/pth/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/share/aclocal $fs/usr/share +} diff -r e3e2ae8e9c2e -r b36b7d0594af pth/receipt --- a/pth/receipt Wed Sep 09 23:23:01 2009 +0200 +++ b/pth/receipt Thu Sep 10 00:14:35 2009 +0200 @@ -14,9 +14,11 @@ compile_rules() { cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS - make + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install } @@ -24,7 +26,6 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }