# HG changeset patch # User Hans-G?nter Theisgen # Date 1555064279 -3600 # Node ID 2aa4897bdebc64f51c31796efbbf488c7d9b3da4 # Parent be09ecfec9dcdf6ab371a9ac46471412149ea8d6 updated libmodplug and libmodplug-dev (0.8.8.1 -> 0.8.9.0) diff -r be09ecfec9dc -r 2aa4897bdebc libmodplug-dev/receipt --- a/libmodplug-dev/receipt Fri Apr 12 11:04:34 2019 +0100 +++ b/libmodplug-dev/receipt Fri Apr 12 11:17:59 2019 +0100 @@ -1,22 +1,24 @@ # SliTaz package receipt. PACKAGE="libmodplug-dev" -VERSION="0.8.8.1" +VERSION="0.8.9.0" CATEGORY="development" -SHORT_DESC="libmodplug devel files" +SHORT_DESC="libmodplug development files." MAINTAINER="jozee@slitaz.org" LICENSE="PublicDomain" +WEB_SITE="http://modplug-xmms.sourceforge.net/" + WANTED="libmodplug" -WEB_SITE="http://modplug-xmms.sourceforge.net/" +DEPENDS="pkg-config" + HOST_ARCH="i486 arm" -DEPENDS="pkg-config" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib/ - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib/ + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r be09ecfec9dc -r 2aa4897bdebc libmodplug/receipt --- a/libmodplug/receipt Fri Apr 12 11:04:34 2019 +0100 +++ b/libmodplug/receipt Fri Apr 12 11:17:59 2019 +0100 @@ -1,25 +1,26 @@ # SliTaz package receipt. PACKAGE="libmodplug" -VERSION="0.8.8.1" +VERSION="0.8.9.0" CATEGORY="multimedia" -SHORT_DESC="A MOD playing library" +SHORT_DESC="A MOD playing library." MAINTAINER="jozee@slitaz.org" LICENSE="PublicDomain" +WEB_SITE="http://modplug-xmms.sourceforge.net/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://modplug-xmms.sourceforge.net/" -WGET_URL="http://downloads.sf.net/sourceforge/modplug-xmms/$TARBALL" -HOST_ARCH="i486 arm" +WGET_URL="$SF_MIRROR/modplug-xmms/$TARBALL" DEPENDS="gcc-lib-base" BUILD_DEPENDS="gcc-lib-base" +HOST_ARCH="i486 arm" + # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr $CONFIGURE_ARGS - make + ./configure --prefix=/usr $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR install }