wok-current rev 21258
updated libmodplug and libmodplug-dev (0.8.8.1 -> 0.8.9.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 12 11:17:59 2019 +0100 (2019-04-12) |
parents | be09ecfec9dc |
children | 5947772a3cfc |
files | libmodplug-dev/receipt libmodplug/receipt |
line diff
1.1 --- a/libmodplug-dev/receipt Fri Apr 12 11:04:34 2019 +0100 1.2 +++ b/libmodplug-dev/receipt Fri Apr 12 11:17:59 2019 +0100 1.3 @@ -1,22 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libmodplug-dev" 1.7 -VERSION="0.8.8.1" 1.8 +VERSION="0.8.9.0" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="libmodplug devel files" 1.11 +SHORT_DESC="libmodplug development files." 1.12 MAINTAINER="jozee@slitaz.org" 1.13 LICENSE="PublicDomain" 1.14 +WEB_SITE="http://modplug-xmms.sourceforge.net/" 1.15 + 1.16 WANTED="libmodplug" 1.17 -WEB_SITE="http://modplug-xmms.sourceforge.net/" 1.18 +DEPENDS="pkg-config" 1.19 + 1.20 HOST_ARCH="i486 arm" 1.21 1.22 -DEPENDS="pkg-config" 1.23 - 1.24 # Rules to gen a SliTaz package suitable for Tazpkg. 1.25 genpkg_rules() 1.26 { 1.27 mkdir -p $fs/usr/lib 1.28 - cp -a $install/usr/include $fs/usr 1.29 - cp -a $install/usr/lib/*.*a $fs/usr/lib/ 1.30 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.31 + 1.32 + cp -a $install/usr/include $fs/usr 1.33 + cp -a $install/usr/lib/*.*a $fs/usr/lib/ 1.34 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.35 }
2.1 --- a/libmodplug/receipt Fri Apr 12 11:04:34 2019 +0100 2.2 +++ b/libmodplug/receipt Fri Apr 12 11:17:59 2019 +0100 2.3 @@ -1,25 +1,26 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libmodplug" 2.7 -VERSION="0.8.8.1" 2.8 +VERSION="0.8.9.0" 2.9 CATEGORY="multimedia" 2.10 -SHORT_DESC="A MOD playing library" 2.11 +SHORT_DESC="A MOD playing library." 2.12 MAINTAINER="jozee@slitaz.org" 2.13 LICENSE="PublicDomain" 2.14 +WEB_SITE="http://modplug-xmms.sourceforge.net/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="http://modplug-xmms.sourceforge.net/" 2.18 -WGET_URL="http://downloads.sf.net/sourceforge/modplug-xmms/$TARBALL" 2.19 -HOST_ARCH="i486 arm" 2.20 +WGET_URL="$SF_MIRROR/modplug-xmms/$TARBALL" 2.21 2.22 DEPENDS="gcc-lib-base" 2.23 BUILD_DEPENDS="gcc-lib-base" 2.24 2.25 +HOST_ARCH="i486 arm" 2.26 + 2.27 # Rules to configure and make the package. 2.28 compile_rules() 2.29 { 2.30 - cd $src 2.31 - ./configure --prefix=/usr $CONFIGURE_ARGS 2.32 - make 2.33 + ./configure --prefix=/usr $CONFIGURE_ARGS && 2.34 + make -j 1 && 2.35 make DESTDIR=$DESTDIR install 2.36 } 2.37