youtube-dl-gui.wxpython

This commit is contained in:
milisbir 2018-01-03 22:30:44 +02:00
parent 52cc850755
commit c215a33250
1 changed files with 40 additions and 20 deletions

View File

@ -1,7 +1,7 @@
# Tanım: Python için bir wxWidgets GUI araç seti # Tanım: Python için bir wxWidgets GUI araç seti
# URL: https://www.wxpython.org # URL: https://www.wxpython.org
# Paketçi: Cihan_Alkan # Paketçi: Cihan_Alkan
# Gerekler: wxgtk28 python xorg-mesa xorg-glu # Gerekler: wxgtk libnotify python xorg-mesa xorg-glu
# Gruplar: kütüphane # Gruplar: kütüphane
isim=wxpython isim=wxpython
@ -12,7 +12,9 @@ kaynak=(https://downloads.sourceforge.net/wxpython/wxPython-src-${surum}.tar.bz2
derle() { derle() {
cd wxPython-src-${surum} cd wxPython-src-${surum}
CFLAGS="$CFLAGS -I/usr/include/wx-2.8" ./configure \ CFLAGS="$CFLAGS `wx-config --cflags --libs`" \
LDFLAGS="`wx-config --libs` $LDFLAGS" \
./configure \
--prefix=/usr \ --prefix=/usr \
--libdir=/usr/lib \ --libdir=/usr/lib \
--includedir=/usr/include \ --includedir=/usr/include \
@ -26,9 +28,27 @@ derle() {
--with-libxpm=sys \ --with-libxpm=sys \
--with-libjpeg=sys \ --with-libjpeg=sys \
--with-libtiff=sys --with-libtiff=sys
cd wxPython
python setup.py WXPORT=gtk2 UNICODE=1 build
python setup.py WXPORT=gtk2 UNICODE=1 install --root="${PKG}" cd wxPython
python setup.py \
WXPORT=gtk2 \
UNICODE=1 \
EP_ADD_OPTS=1 \
EP_FULL_VER=0 \
NO_SCRIPTS=1 \
WX_CONFIG="wx-config --no_rpath" \
build_ext --rpath=/usr/lib \
build
python setup.py \
WXPORT=gtk2 \
UNICODE=1 \
EP_ADD_OPTS=1 \
EP_FULL_VER=0 \
NO_SCRIPTS=1 \
WX_CONFIG="wx-config --no_rpath --prefix=$PKG/usr/bin/" \
SYS_WX_CONFIG="wx-config --enable-unicode" \
build_ext --rpath=/usr/lib \
install --root=$PKG
install -Dm644 ../docs/licence.txt "${PKG}"/usr/share/licenses/${isim}/LICENSE install -Dm644 ../docs/licence.txt "${PKG}"/usr/share/licenses/${isim}/LICENSE
} }