# HG changeset patch # User Christophe Lincoln # Date 1208303300 -7200 # Node ID 1f64c55082abdc9b179385ccc50b5f99dd5cc772 # Parent b25be5dbd7697907843f2b4e324dcb797c12a138 pth: missing shared libs and typo diff -r b25be5dbd769 -r 1f64c55082ab pth/receipt --- a/pth/receipt Wed Apr 16 01:37:50 2008 +0200 +++ b/pth/receipt Wed Apr 16 01:48:20 2008 +0200 @@ -2,13 +2,13 @@ PACKAGE="pth" VERSION="2.0.7" -CATEGORY="extra" -SHORT_DESC="C library for multithreading inside server applications" +CATEGORY="system-tools" +SHORT_DESC="C library for multithreading inside server applications." MAINTAINER="fraazz@altern.org" DEPENDS="libtool" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.gnu.org/software/pth/" -WGET_URL="ftp://ftp.ossp.org/pkg/lib/pth/pth-2.0.7.tar.gz" +WGET_URL="ftp://ftp.ossp.org/pkg/lib/pth/$TARBALL" # Rules to configure and make the package. compile_rules() @@ -23,8 +23,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr + mkdir -p $fs/usr/lib cp -a $_pkg/usr/bin $fs/usr - strip -s $fs/usr/bin/* + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }