document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. # Maintainer: Your name <your@mail.com>
  2. pkgname=yumi
  3. pkgver=0.0.1
  4. pkgrel=1
  5. pkgdesc="Boot and run Linux from a USB flash memory stick"
  6. arch=('any')
  7. url="http://www.pendrivelinux.com"
  8. license=('GPLv3')
  9. depends=('zip' 'gambas3-runtime')
  10. options=('emptydirs')
  11. source=('http://www.pendrivelinux.com/downloads/YUMI/ubuntu/yumi_0.0.1.orig.tar.gz')
  12. md5sums=('77641eeaf77f2d18c27649d288412b54')
  13.  
  14.  
  15. package() {
  16.  
  17. cd "$pkgdir"
  18. install -dm 755 "$pkgdir/usr/bin/"
  19. install -dm 755 "$pkgdir/usr/share/applications/"
  20. install -dm 755 "$pkgdir/usr/share/pixmaps/"
  21.  
  22. install -m755 "$srcdir/yumi-0.0.1.orig/src/YUMI/YUMI.gambas" "$pkgdir/usr/bin/"
  23. install -m644 "$srcdir/yumi-0.0.1.orig/src/YUMI/yumi.png" "$pkgdir/usr/share/pixmaps/"
  24.  
  25.  
  26. cat > $pkgdir/usr/share/applications/$pkgname.desktop << EOF
  27. [Desktop Entry]
  28. Version=1.0
  29. Name=YUMI
  30. Comment=YUMI is Your USB Multiboot Installer! YUMI enables users to easily put multiple Live Linux Operating Systems on a select USB drive, and then run the select Operating System from the USB at boot.
  31. Exec=/usr/bin/YUMI.gambas
  32. Icon=/usr/share/pixmaps/yumi.png
  33. Terminal=false
  34. Type=Application
  35. StartupNotify=true
  36. Categories=System;
  37. EOF
  38.  
  39. }
');