wok rev 21255

updated libmikmod and libmikmod-dev (3.3.6 -> 3.3.11.1)
author Hans-G?nter Theisgen
date Fri Apr 12 10:36:15 2019 +0100 (2019-04-12)
parents 2b60d14eea8d
children 4054526ad238
files libmikmod-dev/receipt libmikmod/receipt
line diff
     1.1 --- a/libmikmod-dev/receipt	Fri Apr 12 11:04:49 2019 +0200
     1.2 +++ b/libmikmod-dev/receipt	Fri Apr 12 10:36:15 2019 +0100
     1.3 @@ -1,21 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libmikmod-dev"
     1.7 -VERSION="3.3.6"
     1.8 +VERSION="3.3.11.1"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Libmikmod devel files and headers."
    1.11 +SHORT_DESC="Libmikmod development files."
    1.12  LICENSE="LGPL2 LGPL2.1"
    1.13  MAINTAINER="paul@slitaz.org"
    1.14 +WEB_SITE="http://mikmod.shlomifish.org/"
    1.15 +
    1.16  WANTED="libmikmod"
    1.17 -WEB_SITE="http://mikmod.shlomifish.org/"
    1.18  
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.23 -	cp -a $install/usr/bin $fs/usr
    1.24 -	cp -a $install/usr/include $fs/usr
    1.25 -	cp -a $install/usr/lib/*.*a* $fs/usr/lib
    1.26 -	cp -a $install/usr/share/aclocal $fs/usr/share
    1.27 +	mkdir -p $fs/usr/lib
    1.28 +	mkdir -p $fs/usr/share
    1.29 +
    1.30 +	cp -a $install/usr/bin			$fs/usr
    1.31 +	cp -a $install/usr/include		$fs/usr
    1.32 +	cp -a $install/usr/lib/*.*a*		$fs/usr/lib
    1.33 +	cp -a $install/usr/share/aclocal	$fs/usr/share
    1.34  }
    1.35 -
     2.1 --- a/libmikmod/receipt	Fri Apr 12 11:04:49 2019 +0200
     2.2 +++ b/libmikmod/receipt	Fri Apr 12 10:36:15 2019 +0100
     2.3 @@ -1,14 +1,15 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libmikmod"
     2.7 -VERSION="3.3.6"
     2.8 +VERSION="3.3.11.1"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Mikmod module player library."
    2.11  MAINTAINER="paul@slitaz.org"
    2.12  LICENSE="LGPL2 LGPL2.1"
    2.13 +WEB_SITE="http://mikmod.shlomifish.org/"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WEB_SITE="http://mikmod.shlomifish.org/"
    2.17 -WGET_URL="http://downloads.sourceforge.net/project/mikmod/$PACKAGE/$VERSION/$TARBALL"
    2.18 +WGET_URL="$SF_MIRROR/mikmod/$PACKAGE/$VERSION/$TARBALL"
    2.19  
    2.20  DEPENDS=""
    2.21  BUILD_DEPENDS="bash"
    2.22 @@ -16,12 +17,14 @@
    2.23  # Rules to configure and make the package.
    2.24  compile_rules()
    2.25  {
    2.26 -	cd $src
    2.27  	touch macintosh/_libmikmodversion.r
    2.28  	sed -i 's|\$(SHELL)|/bin/bash|' configure
    2.29 -	./configure --prefix=/usr \
    2.30 +
    2.31 +	./configure		\
    2.32 +		--prefix=/usr	\
    2.33  		$CONFIGURE_ARGS &&
    2.34 -	make && make install
    2.35 +	make -j 1 &&
    2.36 +	make install
    2.37  }
    2.38  
    2.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.40 @@ -30,4 +33,3 @@
    2.41  	mkdir -p $fs/usr/lib
    2.42  	cp -a $install/usr/lib/*.so* /$fs/usr/lib
    2.43  }
    2.44 -