youtube-dl-gui.wxpython
This commit is contained in:
parent
97864e8785
commit
abf60973ed
|
@ -0,0 +1,34 @@
|
|||
# Tanım: Python için bir wxWidgets GUI araç seti
|
||||
# URL: https://www.wxpython.org
|
||||
# Paketçi: Cihan_Alkan
|
||||
# Gerekler: wxgtk28 python xorg-mesa xorg-glu
|
||||
# Gruplar: kütüphane
|
||||
|
||||
isim=wxpython
|
||||
surum=3.0.2.0
|
||||
devir=1
|
||||
|
||||
kaynak=(https://downloads.sourceforge.net/wxpython/wxPython-src-${surum}.tar.bz2)
|
||||
|
||||
derle() {
|
||||
cd wxPython-src-${surum}
|
||||
CFLAGS="$CFLAGS -I/usr/include/wxg-2.8" ./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib \
|
||||
--includedir=/usr/include \
|
||||
--with-gtk=2 \
|
||||
--with-opengl \
|
||||
--enable-unicode \
|
||||
--enable-graphics_ctx \
|
||||
--disable-precomp-headers \
|
||||
--with-regex=sys \
|
||||
--with-libpng=sys \
|
||||
--with-libxpm=sys \
|
||||
--with-libjpeg=sys \
|
||||
--with-libtiff=sys
|
||||
cd wxPython
|
||||
python setup.py WXPORT=gtk2 UNICODE=1 build
|
||||
|
||||
python setup.py WXPORT=gtk2 UNICODE=1 install --root="${PKG}"
|
||||
install -Dm644 ../docs/licence.txt "${PKG}"/usr/share/licenses/${isim}/LICENSE
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
# Tanım: WxPython'da yazılmış popüler youtube-dl nin çapraz platform arayüzü
|
||||
# URL: https://github.com/MrS0m30n3/youtube-dl-gui
|
||||
# Paketçi: Cihan_Alkan
|
||||
# Gerekler: python wxpython pytwodict gtk-update-icon-cache ffmpeg youtube-dl
|
||||
# Grup: medya
|
||||
|
||||
isim=youtube-dl-gui
|
||||
surum=0.4
|
||||
devir=1
|
||||
kaynak=(https://github.com/MrS0m30n3/youtube-dl-gui/archive/0.4.tar.gz::$isim-$surum.tar.gz
|
||||
youtube-dl-gui.desktop)
|
||||
|
||||
derle() {
|
||||
cd $isim-$surum
|
||||
install -Dm644 ../youtube-dl-gui.desktop "$PKG/usr/share/applications/youtube-dl-gui.desktop"
|
||||
install -Dm644 LICENSE "$PKG/usr/share/licenses/$isim/LICENSE"
|
||||
python setup.py install --root="$PKG" --optimize=1
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Youtube-dl GUI
|
||||
Exec=youtube-dl-gui
|
||||
Icon=youtube-dl-gui
|
||||
Categories=Network;
|
||||
Comment=youtube-dl için arayüz
|
Loading…
Reference in New Issue