# HG changeset patch # User Hans-G?nter Theisgen # Date 1577955630 -3600 # Node ID 8f20ceb4532c9b3e0212575bac89f1adc4906299 # Parent 190336ee1571a7870f182ff57f16ae6836de680f updated audit and audit-dev (2.8.4 -> 2.8.5) diff -r 190336ee1571 -r 8f20ceb4532c audit-dev/receipt --- a/audit-dev/receipt Thu Jan 02 09:49:21 2020 +0100 +++ b/audit-dev/receipt Thu Jan 02 10:00:30 2020 +0100 @@ -1,21 +1,21 @@ # SliTaz package receipt. PACKAGE="audit-dev" -VERSION="2.8.4" +VERSION="2.8.5" CATEGORY="development" -SHORT_DESC="System call auditing development files" +SHORT_DESC="System call auditing development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://people.redhat.com/sgrubb/audit/" - -WANTED="audit" +WEB_SITE="https://people.redhat.com/sgrubb/audit/" DEPENDS="" +WANTED="audit" # 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/*.a $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.a $fs/usr/lib } diff -r 190336ee1571 -r 8f20ceb4532c audit/receipt --- a/audit/receipt Thu Jan 02 09:49:21 2020 +0100 +++ b/audit/receipt Thu Jan 02 10:00:30 2020 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="audit" -VERSION="2.8.4" +VERSION="2.8.5" CATEGORY="misc" SHORT_DESC="System call auditing." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://people.redhat.com/sgrubb/audit/" +WEB_SITE="https://people.redhat.com/sgrubb/audit/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="${WEB_SITE}$TARBALL" @@ -17,15 +17,15 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --localstatedir=/var \ - --sbindir=/sbin \ - --with-libcap-ng=no \ - --without-python \ - $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --sbindir=/sbin \ + --with-libcap-ng=no \ + --without-python \ + $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install } @@ -34,9 +34,10 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/sbin $fs/ - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/etc $fs/ - chown -R root.root $fs/etc + + cp -a $install/sbin $fs/ + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/etc $fs/ + chown -R root.root $fs/etc }