wok diff mxml/receipt @ rev 23947

syslinux/taziso/usbbootkey: gpt supprt
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 20 15:59:25 2020 +0000 (2020-09-20)
parents 6bc472de003f
children 5ea0ce1cecc0
line diff
     1.1 --- a/mxml/receipt	Tue Aug 19 17:47:01 2014 +0200
     1.2 +++ b/mxml/receipt	Sun Sep 20 15:59:25 2020 +0000
     1.3 @@ -1,14 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="mxml"
     1.7 -VERSION="2.8"
     1.8 +VERSION="3.1"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Minimal XML - Dom oriented library."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13  LICENSE="LGPL2"
    1.14  WEB_SITE="http://www.minixml.org/"
    1.15 -WGET_URL="http://www.msweet.org/files/project3/$TARBALL"
    1.16 +
    1.17 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 +WGET_URL="https://github.com/michaelrsweet/$PACKAGE/archive/v$VERSION.tar.gz"
    1.19  
    1.20  DEPENDS=""
    1.21  BUILD_DEPENDS=""
    1.22 @@ -16,7 +17,8 @@
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	./configure --prefix=/usr \
    1.27 +	./configure		\
    1.28 +		--prefix=/usr	\
    1.29  		$CONFIGURE_ARGS &&
    1.30  	make &&
    1.31  	make DESTDIR=$DESTDIR install
    1.32 @@ -26,5 +28,5 @@
    1.33  genpkg_rules()
    1.34  {
    1.35  	mkdir -p $fs/usr/lib
    1.36 -	cp -a $src/libmxml.so* $fs/usr/lib
    1.37 +	cp -a $src/libmxml.so*	$fs/usr/lib
    1.38  }