# HG changeset patch # User Pascal Bellard # Date 1594716779 0 # Node ID 976ee80905da7e752a9bb3542803ea00413762fe # Parent a5ee74db1fee5ed3f8f78b7fa542c2437b894e8a Add libraryopt diff -r a5ee74db1fee -r 976ee80905da barnyard2/receipt --- a/barnyard2/receipt Mon Jul 13 21:34:44 2020 +0000 +++ b/barnyard2/receipt Tue Jul 14 08:52:59 2020 +0000 @@ -17,6 +17,7 @@ # Rules to configure and make the package. compile_rules() { + sed -i 's|typedef int SOCKET|// &|' src/output-plugins/spo_alert_fwsam.c ./autogen.sh && ./configure \ --sysconfdir=/etc/barnyard2 \ diff -r a5ee74db1fee -r 976ee80905da exiv2-dev/receipt --- a/exiv2-dev/receipt Mon Jul 13 21:34:44 2020 +0000 +++ b/exiv2-dev/receipt Tue Jul 14 08:52:59 2020 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="exiv2-dev" -VERSION="0.27.2" +VERSION="0.27.3" CATEGORY="development" SHORT_DESC="exiv2 development files." MAINTAINER="jozee@slitaz.org" diff -r a5ee74db1fee -r 976ee80905da libraryopt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libraryopt/receipt Tue Jul 14 08:52:59 2020 +0000 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="libraryopt" +VERSION="1.0.1" +CATEGORY="development" +SHORT_DESC="Rebuilds shared libraries to contain only the object files needed of executables" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://libraryopt.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="python binutils" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin $install/usr + cp -a $src/src/lib* $fs/usr/bin + cp -a $src/doc $install/usr +}