wok-next rev 20872
perl-texi2html -> texi2html (because it don't contain Perl modules, and not exists on the (meta)cpan, and old, and...); gcompris: up (11.12 -> 17.05)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Jul 04 02:05:23 2018 +0300 (2018-07-04) |
parents | fa61cfb16a25 |
children | 9697a67223d3 |
files | gcompris/.icon.png gcompris/description.txt gcompris/receipt gcompris/stuff/patches/fix-svg.patch gcompris/stuff/patches/series indent/receipt perl-texi2html/receipt texi2html/receipt |
line diff
1.1 Binary file gcompris/.icon.png has changed
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gcompris/description.txt Wed Jul 04 02:05:23 2018 +0300 2.3 @@ -0,0 +1,21 @@ 2.4 +GCompris is an educational software suite comprising of numerous activities for 2.5 +children aged 2 to 10. 2.6 + 2.7 +Some of the activities are game orientated, but nonetheless still educational. 2.8 + 2.9 +Below you can find a list of categories with some of the activities available 2.10 +in that category. 2.11 + 2.12 + * computer discovery: keyboard, mouse, different mouse gestures, ... 2.13 + * arithmetic: table memory, enumeration, double entry table, mirror image, ... 2.14 + * science: the canal lock, the water cycle, the submarine, electric 2.15 + simulation, ... 2.16 + * geography: place the country on the map 2.17 + * games: chess, memory, connect 4, oware, sudoku, ... 2.18 + * reading: reading practice 2.19 + * other: learn to tell time, puzzle of famous paintings, vector drawing, 2.20 + cartoon making, ... 2.21 + 2.22 +Currently GCompris offers in excess of 100 activities and more are being 2.23 +developed. GCompris is free software, that means that you can adapt it to your 2.24 +own needs, improve it and, most importantly, share it with children everywhere.
3.1 --- a/gcompris/receipt Mon Jul 02 22:39:08 2018 +0300 3.2 +++ b/gcompris/receipt Wed Jul 04 02:05:23 2018 +0300 3.3 @@ -1,85 +1,113 @@ 3.4 # SliTaz package receipt v2. 3.5 3.6 PACKAGE="gcompris" 3.7 -VERSION="11.12" 3.8 +VERSION="17.05" 3.9 CATEGORY="games" 3.10 -SHORT_DESC="Education games." 3.11 +SHORT_DESC="Educational software suite comprising of numerous activities for \ 3.12 +children aged 2 to 10" 3.13 MAINTAINER="pankso@slitaz.org" 3.14 LICENSE="GPL2" 3.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 WEB_SITE="http://www.gcompris.net/" 3.17 -WGET_URL="$SF_MIRROR/project/$PACKAGE/$VERSION/$TARBALL" 3.18 + 3.19 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.20 +WGET_URL="http://gcompris.net/download/gtk/src/$TARBALL" 3.21 3.22 BUILD_DEPENDS="pygtk-dev libsdl-mixer-dev librsvg-dev libxml2-dev gnuchess \ 3.23 -gnet-dev sqlite3-dev libcroco-dev intltool perl perl-texi2html optipng" 3.24 -SPLIT="gcompris-music gcompris-voices-de gcompris-voices-en \ 3.25 -gcompris-voices-fr gcompris-voices" 3.26 +gnet-dev sqlite3-dev libcroco-dev intltool perl perl-texi2html texinfo \ 3.27 +python-dev" 3.28 +gv="gcompris-voices" 3.29 +SPLIT="gcompris-music $gv-af $gv-ar $gv-ast $gv-bg $gv-br $gv-ca $gv-cs $gv-da \ 3.30 +$gv-de $gv-el $gv-en $gv-eo $gv-es $gv-eu $gv-fi $gv-fr $gv-gd $gv-he $gv-hi \ 3.31 +$gv-hu $gv-id $gv-it $gv-kn $gv-lt $gv-mr $gv-nb $gv-nl $gv-nn $gv-pa $gv-pl \ 3.32 +$gv-pt $gv-pt_BR $gv-ro $gv-ru $gv-sk $gv-sl $gv-so $gv-sr $gv-sv $gv-th \ 3.33 +$gv-ur $gv-zh_CN $gv-zh_TW $gv gcompris" 3.34 3.35 -# Rules to configure and make the package. 3.36 -compile_rules() 3.37 -{ 3.38 - sed -i 's/g_memmove/memmove/' src/goocanvas/src/goocanvastable.c 3.39 +compile_rules() { 3.40 + sed -i.orig 's/g_memmove/memmove/' src/goocanvas/src/goocanvastable.c 3.41 + 3.42 ./configure \ 3.43 --enable-sdlmixer && 3.44 + fix libtool && 3.45 make LDFLAGS="-Wl,--copy-dt-needed-entries -lgmodule-2.0" \ 3.46 - CFLAGS="-DG_CONST_RETURN=const" && make install && 3.47 - find | grep .png | xargs optipng -o7 > /dev/null 3.48 + CFLAGS="-DG_CONST_RETURN=const" && 3.49 + make install || return 1 3.50 + 3.51 + chown -R root:root $install 3.52 + find $install -type f -perm 664 -exec chmod 644 '{}' \; 3.53 + find $install -type f -perm 775 -exec chmod 755 '{}' \; 3.54 } 3.55 3.56 -# Rules to gen a SliTaz package suitable for Tazpkg. 3.57 -genpkg_rules() 3.58 -{ 3.59 +genpkg_rules() { 3.60 + mo="locale/${PACKAGE##*-}/" 3.61 + case ${PACKAGE##*-} in 3.62 + af) lang="Afrikaans";; 3.63 + ar) lang="Arabic";; 3.64 + ast) lang="Asturian";; 3.65 + bg) lang="Bulgarian";; 3.66 + br) lang="Breton";; 3.67 + ca) lang="Catalan";; 3.68 + cs) lang="Czech";; 3.69 + da) lang="Danish";; 3.70 + de) lang="German";; 3.71 + el) lang="Greek";; 3.72 + en) lang="English"; mo="locale/en*/";; 3.73 + eo) lang="Esperanto";; 3.74 + es) lang="Spanish";; 3.75 + eu) lang="Basque";; 3.76 + fi) lang="Finnish";; 3.77 + fr) lang="French";; 3.78 + gd) lang="Scots Gaelic";; 3.79 + he) lang="Hebrew";; 3.80 + hi) lang="Hindi";; 3.81 + hu) lang="Hungarian";; 3.82 + id) lang="Indonesian";; 3.83 + it) lang="Italian";; 3.84 + kn) lang="Kannada";; 3.85 + lt) lang="Lithuanian";; 3.86 + mr) lang="Marathi";; 3.87 + nb) lang="Norwegian";; 3.88 + nl) lang="Dutch";; 3.89 + nn) lang="Nynorsk";; 3.90 + pa) lang="Punjabi";; 3.91 + pl) lang="Polish";; 3.92 + pt) lang="Portuguese";; 3.93 + pt_BR) lang="Brasilian Portuguese";; 3.94 + ro) lang="Romanian";; 3.95 + ru) lang="Russian";; 3.96 + sk) lang="Slovak";; 3.97 + sl) lang="Slovenian";; 3.98 + so) lang="Somali";; 3.99 + sr) lang="Serbian"; mo="locale/sr*";; 3.100 + sv) lang="Swedish";; 3.101 + th) lang="Thai";; 3.102 + ur) lang="Urdu";; 3.103 + zh_CN) lang="Chinese (simplified)";; 3.104 + zh_TW) lang="Chinese (traditional)";; 3.105 + esac 3.106 + 3.107 case $PACKAGE in 3.108 - gcompris) 3.109 - DEPENDS="pygtk libsdl-mixer librsvg libxml2 gnuchess gnet \ 3.110 + gcompris-music) 3.111 + copy boards/music/ 3.112 + CAT="games|music" 3.113 + ;; 3.114 + gcompris-voices-*) 3.115 + copy voices/${PACKAGE##*-}/ $mo 3.116 + CAT="games|$lang voices and translations" 3.117 + ;; 3.118 + gcompris-voices) 3.119 + copy *.mo @rm # the rest of translations not belongs to any gcompris-voices-* package 3.120 + CAT="meta|voices in all languages" 3.121 + unset DEPENDS 3.122 + for i in $SPLIT; do 3.123 + case $i in 3.124 + gcompris-voices-*) DEPENDS="$DEPENDS $i";; 3.125 + esac 3.126 + done 3.127 + ;; 3.128 + gcompris) 3.129 + copy @std @rm 3.130 + DEPENDS="pygtk libsdl-mixer librsvg libxml2 gnuchess gnet \ 3.131 sqlite3 libcroco" 3.132 - mkdir -p $fs/usr/lib/gcompris $fs/usr/share 3.133 - cp -a $install/usr/bin $fs/usr 3.134 - cp -a $install/usr/lib/gcompris/*.so* \ 3.135 - $fs/usr/lib/gcompris 3.136 - cp -a $install/usr/share/gcompris $fs/usr/share 3.137 - # Music and voices are splited (gcompris-music, gcompris-fr, etc) 3.138 - rm -rf $fs/usr/share/gcompris/boards/music 3.139 - rm -rf $fs/usr/share/gcompris/boards/voices 3.140 - ;; 3.141 - gcompris-music) 3.142 - CAT="games|Gcompris Education games Music." 3.143 - DEPENDS="gcompris" 3.144 - mkdir -p $fs/usr/share/gcompris/boards 3.145 - cp -a $install/usr/share/gcompris/boards/music \ 3.146 - $fs/usr/share/gcompris/boards 3.147 - ;; 3.148 - gcompris-voices-de) 3.149 - CAT="games|Gcompris Education games - German voices." 3.150 - DEPENDS="gcompris" 3.151 - mkdir -p $fs/usr/share/gcompris/boards/voices 3.152 - cp -a $install/usr/share/gcompris/boards/voices/de \ 3.153 - $fs/usr/share/gcompris/boards/voices 3.154 - ;; 3.155 - gcompris-voices-en) 3.156 - CAT="games|Gcompris Education games - English voices." 3.157 - DEPENDS="gcompris" 3.158 - mkdir -p $fs/usr/share/gcompris/boards/voices 3.159 - cp -a $install/usr/share/gcompris/boards/voices/en \ 3.160 - $fs/usr/share/gcompris/boards/voices 3.161 - ;; 3.162 - gcompris-voices-fr) 3.163 - CAT="games|Gcompris Education games - French voices." 3.164 - DEPENDS="gcompris" 3.165 - mkdir -p $fs/usr/share/gcompris/boards/voices 3.166 - cp -a $install/usr/share/gcompris/boards/voices/fr \ 3.167 - $fs/usr/share/gcompris/boards/voices 3.168 - ;; 3.169 - gcompris-voices) 3.170 - CAT="games|Gcompris Education games voices (All languages)." 3.171 - DEPENDS="gcompris gcompris-voices-fr" 3.172 - mkdir -p $fs/usr/share/gcompris/boards 3.173 - cp -a $install/usr/share/gcompris/boards/voices \ 3.174 - $fs/usr/share/gcompris/boards 3.175 - for l in de en fr 3.176 - do 3.177 - rm -rf $fs/usr/share/gcompris/boards/voices/$l 3.178 - done 3.179 - ;; 3.180 + ;; 3.181 esac 3.182 }
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/gcompris/stuff/patches/fix-svg.patch Wed Jul 04 02:05:23 2018 +0300 4.3 @@ -0,0 +1,179 @@ 4.4 +Fix the errors that prevents svgcleaner from optimizing the SVGs: 4.5 + 4.6 +${install}/usr/share/gcompris/boards/babymatch/fusee.svg: 4.7 +Error: the document does not have an SVG element. 4.8 + 4.9 +${install}/usr/share/gcompris/boards/play_piano.svg: 4.10 +Error: invalid color at 159:28. 4.11 + 4.12 +${install}/usr/share/gcompris/boards/louis_braille/piano.svg: 4.13 +Error: invalid color at 89:28. 4.14 + 4.15 +${install}/usr/share/gcompris/boards/instruments/piano.svg: 4.16 +Error: invalid color at 89:28. 4.17 + 4.18 +${install}/usr/share/gcompris/boards/memory/gcompris_band.svg: 4.19 +Error: invalid color at 3029:28. 4.20 + 4.21 +--- a/src/babymatch-activity/resources/babymatch/fusee.svg 4.22 ++++ b/src/babymatch-activity/resources/babymatch/fusee.svg 4.23 +@@ -1,6 +1,6 @@ 4.24 + <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4.25 + <!-- Created with Sodipodi ("http://www.sodipodi.com/") --> 4.26 +-<svg:svg 4.27 ++<svg 4.28 + xmlns:dc="http://purl.org/dc/elements/1.1/" 4.29 + xmlns:cc="http://creativecommons.org/ns#" 4.30 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 4.31 +@@ -16,9 +16,9 @@ 4.32 + inkscape:version="0.46" 4.33 + inkscape:output_extension="org.inkscape.output.svg.inkscape" 4.34 + version="1.0"> 4.35 +- <svg:metadata 4.36 ++ <metadata 4.37 + id="metadata16" /> 4.38 +- <svg:defs 4.39 ++ <defs 4.40 + id="defs550"> 4.41 + <inkscape:perspective 4.42 + sodipodi:type="inkscape:persp3d" 4.43 +@@ -27,7 +27,7 @@ 4.44 + inkscape:vp_z="500 : 250 : 1" 4.45 + inkscape:persp3d-origin="250 : 166.66667 : 1" 4.46 + id="perspective20" /> 4.47 +- </svg:defs> 4.48 ++ </defs> 4.49 + <sodipodi:namedview 4.50 + id="base" 4.51 + showgrid="true" 4.52 +@@ -39,65 +39,65 @@ 4.53 + inkscape:window-x="115" 4.54 + inkscape:window-y="25" 4.55 + inkscape:current-layer="svg548" /> 4.56 +- <svg:g 4.57 ++ <g 4.58 + id="g846" 4.59 + transform="matrix(0.2576836,0,0,0.2576836,-3.2999786,-6.7252894)"> 4.60 +- <svg:path 4.61 ++ <path 4.62 + style="fill:#ff4000;fill-rule:evenodd;stroke-width:3.75" 4.63 + d="M 271.335,362.637 C 271.335,362.637 284.054,399.945 298.468,431.318 C 312.883,462.692 338.321,477.954 341.713,477.954 C 345.104,477.954 348.496,460.148 347.648,449.973 C 346.8,439.798 323.058,419.447 363.759,451.668 C 404.459,483.889 433.288,497.456 430.744,486.433 C 434.984,459.299 387.5,402.489 418.026,412.664 C 448.551,422.839 500.274,446.581 468.053,409.272 C 435.832,371.964 402.763,355.005 430.745,355.853 C 458.726,356.701 485.859,369.42 472.293,344.83 C 458.726,320.24 393.456,281.998 365.475,265.887 C 343.429,276.91 300.165,305.826 271.335,362.637 z" 4.64 + id="path671" 4.65 + sodipodi:nodetypes="cccccccccccc" 4.66 + transform="matrix(1.004098,0,0,1.014736,-1.111864,-7.223473)" /> 4.67 +- <svg:path 4.68 ++ <path 4.69 + style="fill:#ffff33;fill-opacity:0.696296;fill-rule:evenodd;stroke-width:12.5;stroke-linejoin:round" 4.70 + d="M 284.054,339.743 C 284.054,339.743 293.381,384.683 303.556,398.249 C 313.731,411.816 316.275,410.12 318.819,391.466 C 321.363,372.812 303.556,354.157 334.081,374.508 C 364.607,394.858 390.892,420.295 375.63,388.922 C 360.367,357.549 356.127,349.918 377.325,360.941 C 398.523,371.964 418.874,380.443 393.435,349.918 C 373.934,327.872 412.937,321.936 419.721,319.393 C 435.832,321.937 351.04,274.452 342.561,274.452 C 333.233,276.148 287.445,332.959 284.054,339.743 z" 4.71 + id="path672" 4.72 + sodipodi:nodetypes="cccccccccc" /> 4.73 +- <svg:path 4.74 ++ <path 4.75 + style="fill:#d9d9d9;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linejoin:round;stroke-dasharray:none" 4.76 + d="M 43.244,60.7763 C 122.101,62.472 321.362,94.6929 397.675,290.563 C 371.389,295.651 306.948,358.397 296.773,393.161 C 102.599,293.955 47.4836,137.089 43.244,60.7763 z" 4.77 + id="path663" 4.78 + sodipodi:nodetypes="cccc" 4.79 + transform="translate(-25.43768,-29.67728)" /> 4.80 +- <svg:path 4.81 ++ <path 4.82 + style="fill:#bfbfbf;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linejoin:round;stroke-dasharray:none" 4.83 + d="M 189.087,321.936 C 189.087,321.936 192.478,408.424 192.478,409.272 C 192.478,410.12 296.773,457.604 302.708,460.148 L 297.621,392.314 C 288.294,393.162 205.197,339.743 189.087,321.936 z" 4.84 + id="path664" 4.85 + sodipodi:nodetypes="ccccc" 4.86 + transform="translate(-25.43768,-29.67728)" /> 4.87 +- <svg:path 4.88 ++ <path 4.89 + style="fill:#bfbfbf;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linejoin:round;stroke-dasharray:none" 4.90 + d="M 190.761,322.825 C 190.761,322.825 192.478,408.424 192.478,409.272 C 192.478,410.12 296.773,457.604 302.708,460.148 L 297.621,392.314 C 264.809,382.406 210.2,343.258 190.761,322.825 z" 4.91 + id="path665" 4.92 + sodipodi:nodetypes="ccccc" 4.93 + transform="matrix(-2.457462e-2,0.999698,0.999698,2.457462e-2,-13.30614,-47.2839)" /> 4.94 +- <svg:path 4.95 ++ <path 4.96 + style="fill:#bfbfbf;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linejoin:round;stroke-dasharray:none" 4.97 + d="M 235.31677,210.16905 C 235.31677,210.16905 249.57675,244.29165 251.98394,249.85491 C 254.93778,253.60324 329.57296,314.51127 335.05153,317.92908 L 331.87269,296.24835 C 323.87845,288.54971 255.06929,228.23237 235.31677,210.16905 z" 4.98 + id="path666" 4.99 + sodipodi:nodetypes="ccccc" /> 4.100 +- <svg:path 4.101 ++ <path 4.102 + style="fill:#bfbfbf;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linejoin:round;stroke-dasharray:none" 4.103 + d="M 232.63653,209.39949 L 215.86803,233.67972 L 236.51282,269.41364 L 322.26679,337.15802 L 334.6544,318.61254 L 252.66302,249.37251 L 232.63653,209.39949 z" 4.104 + id="path667" 4.105 + sodipodi:nodetypes="ccccccc" /> 4.106 +- <svg:path 4.107 ++ <path 4.108 + style="fill:#bfbfbf;fill-rule:evenodd;stroke:#000000;stroke-width:12.5;stroke-linejoin:round" 4.109 + d="M 124.645,131.154 C 95.8152,170.158 155.169,218.49 183.151,183.725 C 217.068,141.329 158.562,100.629 124.645,131.154 z" 4.110 + id="path668" 4.111 + sodipodi:nodetypes="ccc" /> 4.112 +- <svg:path 4.113 ++ <path 4.114 + style="fill:#aeffff;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linejoin:round;stroke-dasharray:none" 4.115 + d="M 132.276,135.393 C 153.474,115.043 202.653,139.633 180.608,176.094 C 156.018,207.466 105.991,167.615 132.276,135.393 z" 4.116 + id="path669" 4.117 + sodipodi:nodetypes="ccc" /> 4.118 +- <svg:path 4.119 ++ <path 4.120 + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke-width:12.5;stroke-linejoin:round" 4.121 + d="M 148.386,134.502 C 141.52512,139.23955 123.48549,154.12588 138.211,171.854 C 150.93,175.246 168.736,136.198 148.386,134.502 z" 4.122 + id="path670" 4.123 + sodipodi:nodetypes="ccc" /> 4.124 +- </svg:g> 4.125 +- <svg:metadata 4.126 ++ </g> 4.127 ++ <metadata 4.128 + id="metadata18"> 4.129 + <rdf:RDF 4.130 + id="RDF616"> 4.131 +@@ -130,5 +130,5 @@ 4.132 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 4.133 + </cc:Work> 4.134 + </rdf:RDF> 4.135 +- </svg:metadata> 4.136 +-</svg:svg> 4.137 ++ </metadata> 4.138 ++</svg> 4.139 +--- a/src/play_piano-activity/play_piano.svg 4.140 ++++ b/src/play_piano-activity/play_piano.svg 4.141 +@@ -156,7 +156,7 @@ 4.142 + offset="0" 4.143 + id="stop11328" /> 4.144 + <stop 4.145 +- style="stop-color:none" 4.146 ++ style="stop-color:#ffffff;stop-opacity:0;" 4.147 + offset="1" 4.148 + id="stop11330" /> 4.149 + </linearGradient> 4.150 +--- a/src/louis_braille-activity/resources/louis_braille/piano.svg 4.151 ++++ b/src/louis_braille-activity/resources/louis_braille/piano.svg 4.152 +@@ -86,7 +86,7 @@ 4.153 + offset="0" 4.154 + id="stop11328" /> 4.155 + <stop 4.156 +- style="stop-color:none" 4.157 ++ style="stop-color:#ffffff;stop-opacity:0;" 4.158 + offset="1" 4.159 + id="stop11330" /> 4.160 + </linearGradient> 4.161 +--- a/src/instruments-activity/resources/instruments/piano.svg 4.162 ++++ b/src/instruments-activity/resources/instruments/piano.svg 4.163 +@@ -86,7 +86,7 @@ 4.164 + offset="0" 4.165 + id="stop11328" /> 4.166 + <stop 4.167 +- style="stop-color:none" 4.168 ++ style="stop-color:#ffffff;stop-opacity:0;" 4.169 + offset="1" 4.170 + id="stop11330" /> 4.171 + </linearGradient> 4.172 +--- a/src/memory-activity/resources/memory/gcompris_band.svg 4.173 ++++ b/src/memory-activity/resources/memory/gcompris_band.svg 4.174 +@@ -3026,7 +3026,7 @@ 4.175 + offset="0" 4.176 + id="stop6049" /> 4.177 + <stop 4.178 +- style="stop-color:none" 4.179 ++ style="stop-color:#3f2f17;stop-opacity:0;" 4.180 + offset="1" 4.181 + id="stop6051" /> 4.182 + </linearGradient>
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/gcompris/stuff/patches/series Wed Jul 04 02:05:23 2018 +0300 5.3 @@ -0,0 +1,1 @@ 5.4 +fix-svg.patch
6.1 --- a/indent/receipt Mon Jul 02 22:39:08 2018 +0300 6.2 +++ b/indent/receipt Wed Jul 04 02:05:23 2018 +0300 6.3 @@ -12,7 +12,7 @@ 6.4 #WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 6.5 WGET_URL="http://ftp.de.debian.org/debian/pool/main/i/indent/${PACKAGE}_$VERSION.orig.tar.gz" 6.6 6.7 -BUILD_DEPENDS="gettext perl-texi2html" 6.8 +BUILD_DEPENDS="gettext texi2html" 6.9 6.10 compile_rules() { 6.11 # rm -f man/indent.1 # remove zero-size file to force rebuild it
7.1 --- a/perl-texi2html/receipt Mon Jul 02 22:39:08 2018 +0300 7.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 7.3 @@ -1,25 +0,0 @@ 7.4 -# SliTaz package receipt v2. 7.5 - 7.6 -PACKAGE="perl-texi2html" 7.7 -VERSION="1.82" 7.8 -CATEGORY="utilities" 7.9 -SHORT_DESC="Converts texinfo documents to HTML" 7.10 -MAINTAINER="gokhlayeh@slitaz.org" 7.11 -LICENSE="GPL2" 7.12 -WEB_SITE="http://www.nongnu.org/texi2html/" 7.13 - 7.14 -TARBALL="texi2html-$VERSION.tar.bz2" 7.15 -WGET_URL="http://download.savannah.gnu.org/releases/texi2html/$TARBALL" 7.16 - 7.17 -BUILD_DEPENDS="perl" 7.18 - 7.19 -compile_rules() { 7.20 - ./configure $CONFIGURE_ARGS && make && make install || return 1 7.21 - 7.22 - sed -i 's|bin/env perl|bin/perl|' $install/usr/bin/texi2html 7.23 -} 7.24 - 7.25 -genpkg_rules() { 7.26 - copy @std 7.27 - DEPENDS="perl" 7.28 -}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/texi2html/receipt Wed Jul 04 02:05:23 2018 +0300 8.3 @@ -0,0 +1,25 @@ 8.4 +# SliTaz package receipt v2. 8.5 + 8.6 +PACKAGE="texi2html" 8.7 +VERSION="1.82" 8.8 +CATEGORY="utilities" 8.9 +SHORT_DESC="Converts texinfo documents to HTML" 8.10 +MAINTAINER="gokhlayeh@slitaz.org" 8.11 +LICENSE="GPL2" 8.12 +WEB_SITE="http://www.nongnu.org/texi2html/" 8.13 + 8.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 8.15 +WGET_URL="http://download.savannah.gnu.org/releases/texi2html/$TARBALL" 8.16 + 8.17 +BUILD_DEPENDS="perl" 8.18 + 8.19 +compile_rules() { 8.20 + ./configure $CONFIGURE_ARGS && 8.21 + make && 8.22 + make install 8.23 +} 8.24 + 8.25 +genpkg_rules() { 8.26 + copy @std 8.27 + DEPENDS="perl" 8.28 +}