wok rev 23882

Add libraryopt
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 14 08:52:59 2020 +0000 (2020-07-14)
parents a5ee74db1fee
children 4de5da068028
files barnyard2/receipt exiv2-dev/receipt libraryopt/receipt
line diff
     1.1 --- a/barnyard2/receipt	Mon Jul 13 21:34:44 2020 +0000
     1.2 +++ b/barnyard2/receipt	Tue Jul 14 08:52:59 2020 +0000
     1.3 @@ -17,6 +17,7 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 +	sed -i 's|typedef int SOCKET|// &|' src/output-plugins/spo_alert_fwsam.c
     1.8  	./autogen.sh &&
     1.9  	./configure \
    1.10  		--sysconfdir=/etc/barnyard2 \
     2.1 --- a/exiv2-dev/receipt	Mon Jul 13 21:34:44 2020 +0000
     2.2 +++ b/exiv2-dev/receipt	Tue Jul 14 08:52:59 2020 +0000
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="exiv2-dev"
     2.7 -VERSION="0.27.2"
     2.8 +VERSION="0.27.3"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="exiv2 development files."
    2.11  MAINTAINER="jozee@slitaz.org"
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libraryopt/receipt	Tue Jul 14 08:52:59 2020 +0000
     3.3 @@ -0,0 +1,21 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="libraryopt"
     3.7 +VERSION="1.0.1"
     3.8 +CATEGORY="development"
     3.9 +SHORT_DESC="Rebuilds shared libraries to contain only the object files needed of executables"
    3.10 +MAINTAINER="pascal.bellard@slitaz.org"
    3.11 +LICENSE="GPL2"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WEB_SITE="http://libraryopt.sourceforge.net/"
    3.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    3.15 +
    3.16 +DEPENDS="python binutils"
    3.17 +
    3.18 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.19 +genpkg_rules()
    3.20 +{
    3.21 +	mkdir -p $fs/usr/bin $install/usr
    3.22 +	cp -a $src/src/lib* $fs/usr/bin
    3.23 +	cp -a $src/doc $install/usr
    3.24 +}