--- febootstrap_pacman.ml 2012-08-31 18:28:58.000000000 +0300 +++ febootstrap_pacman.ml.new 2012-12-14 16:40:55.528864156 +0200 @@ -61,11 +61,12 @@ if Sys.command cmd <> 0 then ( (* The package is not in the main repos, check the aur *) let cmd = - sprintf "umask 0000; cd %s && wget http://aur.archlinux.org/packages/%s/%s.tar.gz && tar xf %s.tar.gz && cd %s && makepkg && mv %s-*.pkg.tar.xz %s" + sprintf "umask 0000; cd %s && wget https://aur.archlinux.org/packages/%s/%s/%s.tar.gz && tar xf %s.tar.gz && cd %s && makepkg && mv %s-*.pkg.tar.xz %s" (Filename.quote tmpdir) + (String.sub pkg 0 2) pkg pkg pkg pkg pkg (Filename.quote tmpdir) in