milis/talimatname/genel/w/woeusb/talimat

33 lines
925 B
Plaintext
Raw Normal View History

2017-07-02 03:23:39 +02:00
# Description: Windows DVD'sinden veya bir iso dosyasından Windows USB bellek kurulum aracı oluşturma programı
# URL: https://github.com/slacka/WoeUSB
# Packager: Cihan Alkan
2017-07-02 14:33:42 +02:00
# Depends on: wxgtk grub libnotify parted ntfs-3g p7zip
2017-07-02 03:23:39 +02:00
name=woeusb
version=2.0.3
release=1
source=(trad.mo)
build() {
if [ ! -d $DERLEME_KAYNAKDIZIN/$name ];then
git clone https://github.com/slacka/WoeUSB.git $DERLEME_KAYNAKDIZIN/$name
else
cd $DERLEME_KAYNAKDIZIN/$name
git pull
cd -
fi
cp -r $DERLEME_KAYNAKDIZIN/$name $SRC/
cd $SRC/$name
./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
}