milis/talimatname/genel/w/woeusb/talimat

33 lines
914 B
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: Windows DVD'sinden veya bir iso dosyasından Windows USB bellek kurulum aracı oluşturma programı
2017-07-02 03:23:39 +02:00
# URL: https://github.com/slacka/WoeUSB
2017-10-27 20:46:27 +02:00
# Paketçi: Cihan Alkan
# Gerekler: wxgtk grub libnotify parted ntfs-3g p7zip
2017-07-02 03:23:39 +02:00
2017-10-28 14:10:23 +02:00
isim=woeusb
surum=2.0.3
devir=1
2017-07-02 03:23:39 +02:00
2017-10-28 14:10:23 +02:00
kaynak=(trad.mo)
2017-07-02 03:23:39 +02:00
2017-10-27 23:59:41 +02:00
derle() {
2017-10-28 14:10:23 +02:00
if [ ! -d $DERLEME_KAYNAKDIZIN/$isim ];then
git clone https://github.com/slacka/WoeUSB.git $DERLEME_KAYNAKDIZIN/$isim
2017-07-02 03:23:39 +02:00
else
2017-10-28 14:10:23 +02:00
cd $DERLEME_KAYNAKDIZIN/$isim
2017-07-02 03:23:39 +02:00
git pull
cd -
fi
2017-10-28 14:10:23 +02:00
cp -r $DERLEME_KAYNAKDIZIN/$isim $SRC/
cd $SRC/$isim
2017-07-02 03:23:39 +02:00
./configure
make
make DESTDIR=$PKG prefix=/usr/ install
mkdir $PKG/usr/share/woeusb/locale/tr
mkdir $PKG/usr/share/woeusb/locale/tr/LC_MESSAGES
cp $SRC/trad.mo $PKG/usr/share/woeusb/locale/tr/LC_MESSAGES/
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
}