wok diff mikmod/receipt @ rev 21899

updated seed and seed-dev (3.2.0 -> 3.8.1)
author Hans-G?nter Theisgen
date Thu Oct 03 20:41:17 2019 +0100 (2019-10-03)
parents 17e313b5b9c1
children afae00265386
line diff
     1.1 --- a/mikmod/receipt	Tue Feb 17 09:42:47 2015 +0100
     1.2 +++ b/mikmod/receipt	Thu Oct 03 20:41:17 2019 +0100
     1.3 @@ -1,31 +1,35 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="mikmod"
     1.7 -VERSION="3.2.5"
     1.8 +VERSION="3.2.8"
     1.9  CATEGORY="multimedia"
    1.10  SHORT_DESC="Mikmod module player."
    1.11  MAINTAINER="paul@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://mikmod.shlomifish.org/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://mikmod.shlomifish.org/"
    1.17 -WGET_URL="http://downloads.sourceforge.net/project/mikmod/$PACKAGE/$VERSION/$TARBALL"
    1.18 +WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
    1.19  
    1.20 -DEPENDS="ncurses libmikmod"
    1.21 -BUILD_DEPENDS="ncurses-dev libmikmod-dev"
    1.22 +DEPENDS="libmikmod ncurses"
    1.23 +BUILD_DEPENDS="libmikmod-dev ncurses-dev"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28  	export LDFLAGS="$LDFLAGS -ltinfo"
    1.29 -	./configure --prefix=/usr \
    1.30 +	./configure		\
    1.31 +		--prefix=/usr	\
    1.32  		$CONFIGURE_ARGS &&
    1.33 -	make && make install
    1.34 +	make -j 1 &&
    1.35 +	make install
    1.36  }
    1.37  
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41  	mkdir -p $fs/usr/share
    1.42 -	cp -a $install/usr/bin $fs/usr
    1.43 -	cp -a $install/usr/share/mikmod $fs/usr/share
    1.44 +
    1.45 +	cp -a $install/usr/bin		$fs/usr
    1.46 +	cp -a $install/usr/share/mikmod	$fs/usr/share
    1.47  }