talimat 801 B

1234567891011121314151617181920212223242526272829
  1. # Tanım: Windows DVD'sinden veya bir iso dosyasından Windows USB bellek kurulum aracı oluşturma programı
  2. # URL: https://github.com/slacka/WoeUSB
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: wxgtk grub libnotify parted ntfs-3g p7zip
  5. # Grup: sistem
  6. isim=woeusb
  7. surum=3.2.1
  8. devir=1
  9. kaynak=(trad.mo)
  10. derle() {
  11. git_indir https://github.com/slacka/WoeUSB.git $isim
  12. cd $isim
  13. autoreconf --force --install
  14. autoconf
  15. ./configure
  16. make
  17. make DESTDIR="$PKG/" prefix="/usr/" install
  18. mkdir $PKG/usr/share/woeusb/locale/tr
  19. mkdir $PKG/usr/share/woeusb/locale/tr/LC_MESSAGES
  20. cp $SRC/trad.mo $PKG/usr/share/woeusb/locale/tr/LC_MESSAGES/
  21. echo "Comment[tr_TR]=Windows DVD'sinden veya bir iso dosyasından Windows USB bellek kurulum aracı oluşturma programı" >> $PKG/usr/share//applications/woeusbgui.desktop
  22. }