Author: bdubbs
Date: Fri Dec 20 21:43:32 2019
New Revision: 22497

Log:
Fix currency for falkon

Modified:
   trunk/scripts/blfs-chapter43.php

Modified: trunk/scripts/blfs-chapter43.php
==============================================================================
--- trunk/scripts/blfs-chapter43.php    Fri Dec 20 12:51:06 2019        (r22496)
+++ trunk/scripts/blfs-chapter43.php    Fri Dec 20 21:43:32 2019        (r22497)
@@ -38,6 +38,10 @@
           //'replace' => "https://googlechromereleases.blogspot.com/"; ),
           'replace' => 
"https://git.archlinux.org/svntogit/packages.git/plain/trunk/PKGBUILD?h=packages/chromium";
 ),
 
+   array( 'pkg'     => 'falkon',
+          'match'   => '^.*$',
+          'replace' => "https://github.com/KDE/falkon/releases"; ),
+
    array( 'pkg'     => 'firefox',
           'match'   => '^.*$',
           'replace' => "https://archive.mozilla.org/pub/firefox/releases/"; ),
@@ -285,6 +289,9 @@
     return $max;
   }
 
+  if ( preg_match( "/falkon/", "$dirpath" ) )
+      return find_max( $lines, "/v\d/", "/^\s*v([\d\.]+).*$/" );
+
   if ( preg_match( "/firefox/", "$dirpath" ) )
       return find_max( $lines, "/^\s+[\d\.]+esr/", "/^\s+([\d\.]+)esr\/.*$/" );
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to