milis/talimatname/genel/i/isowriter/talimat

41 lines
928 B
Plaintext
Raw Normal View History

2018-01-23 01:49:47 +01:00
# Tanım: Kalıp dosyalarunu USB belleğe yaz
# URL: https://github.com/KaOSx/isowriter
2018-05-27 21:33:19 +02:00
# Paketçi: Cihan_Alkan
2018-01-23 01:49:47 +01:00
# Gerekler: qt5
# Grup: sistem
isim=isowriter
surum=1.1.3
2018-06-01 18:23:34 +02:00
devir=2
2018-01-23 01:49:47 +01:00
kaynak=()
derle() {
2018-05-27 21:33:19 +02:00
git_indir https://github.com/KaOSx/isowriter $isim
2018-01-23 01:49:47 +01:00
cd $SRC/$isim
qmake-qt5 ImageWriter.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug
2018-05-27 21:33:19 +02:00
make
2018-01-23 01:49:47 +01:00
mkdir -p $PKG/usr/share/applications
# Başlatıcı
cat > $PKG/usr/share/applications/$isim.desktop << "EOF" &&
[Desktop Entry]
Type=Application
Categories=System;Utility;Archiving;
X-KDE-RootOnly=true
2018-05-27 21:33:19 +02:00
Exec=sudo IsoWriter
Icon=/usr/share/icons/usb_blue.png
2018-01-23 01:49:47 +01:00
Name=ISO Writer
Comment=Tool for creating bootable installation USB flash drives
Comment[tr]=Kalıp dosyalarunu USB belleğe yaz
GenericName=USB key writer
Version=1.0
EOF
mkdir -p $PKG/usr/bin
2018-05-27 21:33:19 +02:00
cp IsoWriter $PKG/usr/bin/
mkdir -p $PKG/usr/share/icons
cp res/usb_blue.png $PKG/usr/share/icons/
2018-01-23 01:49:47 +01:00
}
2018-05-27 21:33:19 +02:00