adamdea wrote: 
> Yes it did work, thanks. Mind you I am trying to repeat the exercise
> using Debian on a cubox-i and finding it very hard going. But that's
> getting LMS running I haven't got to squeezelite yet
> 
> Have you had a go

Now you mention cubox-i, which is i.MX6 based, it doesn't seem out of
place to offer my build ideas for Wandboard running Wheezy, which has
the same SoC at its core.

I build my CPAN modules as follows:

Code:
--------------------
    
  #!/bin/bash
  if [ ! -d ./slimserver-vendor ] 
  then 
  git clone https://github.com/Logitech/slimserver-vendor.git
  fi
  if [ ! -f YAML-LibYAML-0.52.tar.gz ] 
  then 
  wget http://search.cpan.org/CPAN/authors/id/I/IN/INGY/YAML-LibYAML-0.52.tar.gz
  fi
  if [ ! -f Compress-Raw-Zlib-2.065.tar.gz ] 
  then 
  wget 
http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/Compress-Raw-Zlib-2.065.tar.gz
  fi
  if [ ! -f Audio-Scan-0.95.tar.gz ]
  then
  git clone https://github.com/SqueezeOnArch/Audio-Scan.git
  mv ./Audio-Scan ./Audio-Scan-0.95
  tar cf Audio-Scan-0.95.tar ./Audio-Scan-0.95/
  rm -rf ./Audio-Scan-0.95
  gzip Audio-Scan-0.95.tar
  fi
  cp Audio-Scan-0.95.tar.gz ./slimserver-vendor/CPAN
  cp Compress-Raw-Zlib-2.065.tar.gz ./slimserver-vendor/CPAN
  cp YAML-LibYAML-0.52.tar.gz ./slimserver-vendor/CPAN
  cp Font-FreeType-0.03.patch ./slimserver-vendor/CPAN
  cp buildme.patch ./slimserver-vendor/CPAN
  cp Image-Scale-0.08.patch ./slimserver-vendor/CPAN
  cd ./slimserver-vendor/CPAN
  patch buildme.sh < buildme.patch
  PERL_514=/usr/bin/perl ./buildme.sh
  
--------------------

The 3 patches needed are attached to this post.


+-------------------------------------------------------------------+
|Filename: Font-FreeType-0.03.patch                                 |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16378|
+-------------------------------------------------------------------+


----------------------
"Dreamer, easy in the chair that really fits you..."
------------------------------------------------------------------------
dsdreamer's Profile: http://forums.slimdevices.com/member.php?userid=12588
View this thread: http://forums.slimdevices.com/showthread.php?t=102075

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to