29 lines
794 B
Plaintext
29 lines
794 B
Plaintext
|
# Tanım: Windows DVD'sinden veya bir iso dosyasından Windows USB bellek kurulum aracı oluşturma programı
|
|||
|
# URL: https://github.com/slacka/WoeUSB
|
|||
|
# Paketçi: Cihan_Alkan
|
|||
|
# Gerekler: wxgtk grub libnotify parted ntfs-3g p7zip
|
|||
|
# Grup:
|
|||
|
|
|||
|
isim=woeusb
|
|||
|
surum=3.2.1
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(trad.mo)
|
|||
|
|
|||
|
|
|||
|
derle() {
|
|||
|
git_indir https://github.com/slacka/WoeUSB.git $isim
|
|||
|
cd $isim
|
|||
|
autoreconf --force --install
|
|||
|
autoconf
|
|||
|
./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
|
|||
|
|
|||
|
}
|