wok rev 22068

updated udftools (1.0.0b3 -> 2.1)
author Hans-G?nter Theisgen
date Fri Oct 25 15:05:17 2019 +0100 (2019-10-25)
parents 9a0f4de525d7
children 629175d3e623
files udftools/receipt
line diff
     1.1 --- a/udftools/receipt	Fri Oct 25 14:56:03 2019 +0100
     1.2 +++ b/udftools/receipt	Fri Oct 25 15:05:17 2019 +0100
     1.3 @@ -1,24 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="udftools"
     1.7 -VERSION="1.0.0b3"
     1.8 +VERSION="2.1"
     1.9  CATEGORY="utilities"
    1.10 -SHORT_DESC="tools for UDF filesystems and DVD/CD-R(W) drives."
    1.11 +SHORT_DESC="Linux UDF filesystem userspcae utilities."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="https://github.com/pali/udftools/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://linux-udf.sourceforge.net/"
    1.18 -WGET_URL="$SF_MIRROR/linux-udf/$TARBALL"
    1.19 +WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz"
    1.20  
    1.21  DEPENDS="ncurses readline"
    1.22 -BUILD_DEPENDS="ncurses-dev readline-dev bash file"
    1.23 +BUILD_DEPENDS="autoconf bash file ncurses-dev readline-dev"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	sed -i 's/(char\*)spm += /spm = (char*)spm + /' wrudf/wrudf.c
    1.29 -	sed -i 's/<stdio.h>/&\n#include <limits.h>/' \
    1.30 -		cdrwtool/cdrwtool.c pktsetup/pktsetup.c
    1.31 +	# 1.0.0b3
    1.32 +#	sed -i 's/(char\*)spm += /spm = (char*)spm + /' wrudf/wrudf.c
    1.33 +#	sed -i 's/<stdio.h>/&\n#include <limits.h>/' \
    1.34 +#		cdrwtool/cdrwtool.c pktsetup/pktsetup.c
    1.35 +
    1.36 +	./autogen.sh &&
    1.37  	./configure --prefix=/usr &&
    1.38  	make &&
    1.39  	make DESTDIR=$DESTDIR install
    1.40 @@ -28,5 +32,7 @@
    1.41  genpkg_rules()
    1.42  {
    1.43  	mkdir -p $fs/usr
    1.44 -	cp -a $install/usr/bin $fs/usr
    1.45 +
    1.46 +	cp -a $install/usr/bin	$fs/usr
    1.47 +	cp -a $install/usr/sbin	$fs/usr
    1.48  }