wok diff udftools/receipt @ rev 22532
updated bazaar (2.6.0 -> 2.7.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 03 09:32:34 2020 +0100 (2020-01-03) |
parents | 1be66a08b81f |
children | 6bab837a85ec |
line diff
1.1 --- a/udftools/receipt Thu Dec 13 11:44:12 2018 +0100 1.2 +++ b/udftools/receipt Fri Jan 03 09:32:34 2020 +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 }