# HG changeset patch # User Matthew Sheets # Date 1248357631 0 # Node ID 22fccd4d5400d99fbb014459a362c9b9d049b3fc # Parent cd9ee64986005418ad88e1cc68615e73c16aff27 Update: attr,acl (configure) diff -r cd9ee6498600 -r 22fccd4d5400 acl-dev/receipt --- a/acl-dev/receipt Thu Jul 23 13:37:17 2009 +0000 +++ b/acl-dev/receipt Thu Jul 23 14:00:31 2009 +0000 @@ -12,12 +12,11 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/lib + cp -a $_pkg/lib/*.*a $fs/lib + mkdir -p $fs/usr/lib cp -a $_pkg/usr/lib/*.*a $fs/usr/lib - mkdir -p $fs/usr/libexec - cp -a $_pkg/usr/libexec/*.*a $fs/usr/libexec - cp -a $_pkg/usr/include $fs/usr } -z diff -r cd9ee6498600 -r 22fccd4d5400 acl/receipt --- a/acl/receipt Thu Jul 23 13:37:17 2009 +0000 +++ b/acl/receipt Thu Jul 23 14:00:31 2009 +0000 @@ -36,21 +36,19 @@ rm -r -f man rm -r -f doc - ./configure \ - --prefix=/usr \ - $CONFIGURE_ARGS && - make && + # Configure is included in Makefile + make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" && make DESTDIR=$src/_pkg install install-lib install-dev } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/lib + cp -a $_pkg/lib/*.so* $fs/lib + mkdir -p $fs/usr/lib cp -a $_pkg/usr/lib/*.so* $fs/usr/lib - - mkdir -p $fs/usr/libexec - cp -a $_pkg/usr/libexec/*.so* $fs/usr/libexec - + cp -a $_pkg/usr/bin $fs/usr } diff -r cd9ee6498600 -r 22fccd4d5400 attr-dev/receipt --- a/attr-dev/receipt Thu Jul 23 13:37:17 2009 +0000 +++ b/attr-dev/receipt Thu Jul 23 14:00:31 2009 +0000 @@ -12,11 +12,11 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/lib + cp -a $_pkg/lib/*.*a $fs/lib + mkdir -p $fs/usr/lib cp -a $_pkg/usr/lib/*.*a $fs/usr/lib - mkdir -p $fs/usr/libexec - cp -a $_pkg/usr/libexec/*.*a $fs/usr/libexec - cp -a $_pkg/usr/include $fs/usr } diff -r cd9ee6498600 -r 22fccd4d5400 attr/receipt --- a/attr/receipt Thu Jul 23 13:37:17 2009 +0000 +++ b/attr/receipt Thu Jul 23 14:00:31 2009 +0000 @@ -36,21 +36,19 @@ rm -r -f man rm -r -f doc - ./configure \ - --prefix=/usr \ - $CONFIGURE_ARGS && - make && + # Configure is included in Makefile + make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" && make DESTDIR=$src/_pkg install install-lib install-dev } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/lib + cp -a $_pkg/lib/*.so* $fs/lib + mkdir -p $fs/usr/lib cp -a $_pkg/usr/lib/*.so* $fs/usr/lib - - mkdir -p $fs/usr/libexec - cp -a $_pkg/usr/libexec/*.so* $fs/usr/libexec - + cp -a $_pkg/usr/bin $fs/usr }