From 8f545423c5883095c0fc2ac025da4127d1da8770 Mon Sep 17 00:00:00 2001 From: milisbir Date: Mon, 23 Oct 2017 17:35:36 +0300 Subject: [PATCH] =?UTF-8?q?flashplayer.guncellend=C5=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- talimatname/genel/flashplayer/talimat | 40 +++++-------------- .../genel/python3-multipledispatch/talimat | 15 +++++++ talimatname/genel/python3-pyrr/talimat | 14 +++++++ 3 files changed, 38 insertions(+), 31 deletions(-) create mode 100644 talimatname/genel/python3-multipledispatch/talimat create mode 100644 talimatname/genel/python3-pyrr/talimat diff --git a/talimatname/genel/flashplayer/talimat b/talimatname/genel/flashplayer/talimat index 4e84d3bc7..49491884a 100644 --- a/talimatname/genel/flashplayer/talimat +++ b/talimatname/genel/flashplayer/talimat @@ -1,40 +1,18 @@ # Description: Adobe Flash Player # URL: http://www.macromedia.com # Packager: milisarge -# Depends on: +# Depends on: nss name=flashplayer -version=11.2.202.643 +version=27.0.0.170 release=1 - - -case `uname -m` in - x86_64) - source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$version/install_flash_player_11_linux.x86_64.tar.gz - flashplayer.mms.cfg) ;; - i?86) - source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$version/install_flash_player_11_linux.i386.tar.gz - flashplayer.mms.cfg) ;; -esac +source=(https://fpdownload.adobe.com/get/flashplayer/pdc/$version/flash_player_ppapi_linux.x86_64.tar.gz::$name-$version.tar.gz + flashplayer.mms.cfg) + build() { - cd $SRC - install -Dm755 libflashplayer.so $PKG/usr/lib/mozilla/plugins/libflashplayer.so - - case `uname -m` in - x86_64) - install -Dm755 usr/lib64/kde4/kcm_adobe_flash_player.so $PKG//usr/lib/kde4/kcm_adobe_flash_player.so ;; - i?86) - install -Dm755 usr/lib/kde4/kcm_adobe_flash_player.so $PKG//usr/lib/kde4/kcm_adobe_flash_player.so ;; - esac - - for res in 16 22 24 32 48; do - install -D -m644 $SRC/usr/share/icons/hicolor/${res}x$res/apps/flash-player-properties.png $PKG/usr/share/icons/hicolor/${res}x$res/apps/flash-player-properties.png - done - install -D -m644 $SRC/usr/share/icons/hicolor/48x48/apps/flash-player-properties.png $PKG/usr/share/pixmaps/flash-player-properties.png - install -D -m644 $SRC/usr/share/applications/flash-player-properties.desktop $PKG/usr/share/applications/flash-player-properties.desktop - install -D -m644 $SRC/usr/share/kde4/services/kcm_adobe_flash_player.desktop $PKG//usr/share/kde4/services/kcm_adobe_flash_player.desktop - install -D -m755 $SRC/usr/bin/flash-player-properties $PKG/usr/bin/flash-player-properties - install -D -m755 libflashplayer.so $PKG/usr/lib/mozilla/plugins/libflashplayer.so - install -D -m644 flashplayer.mms.cfg $PKG/etc/adobe/mms.cfg + cd $SRC + install -Dm644 libpepflashplayer.so "$PKG/usr/lib/mozilla/plugins/libflashplayer.so" + install -Dm644 -t "$PKG/usr/share/licenses/$name" license.pdf LGPL/notice.txt + install -D -m644 flashplayer.mms.cfg $PKG/etc/adobe/mms.cfg } diff --git a/talimatname/genel/python3-multipledispatch/talimat b/talimatname/genel/python3-multipledispatch/talimat new file mode 100644 index 000000000..9efb146c3 --- /dev/null +++ b/talimatname/genel/python3-multipledispatch/talimat @@ -0,0 +1,15 @@ +# Description: Multiple dispatch implementation in Python +# URL: https://github.com/mrocklin/multipledispatch +# Packager: milisarge +# Depends on: python3 python3-setuptools + +name=python3-multipledispatch +version=0.4.8 +release=1 +source=(https://github.com/mrocklin/multipledispatch/archive/$version.tar.gz::$name-$version.tar.gz) + +build() { + cd "${SRC}"/multipledispatch-$version + python3 setup.py build + python3 setup.py install --skip-build --prefix=/usr --root="$PKG" --optimize=1 +} diff --git a/talimatname/genel/python3-pyrr/talimat b/talimatname/genel/python3-pyrr/talimat new file mode 100644 index 000000000..f18be7834 --- /dev/null +++ b/talimatname/genel/python3-pyrr/talimat @@ -0,0 +1,14 @@ +# Description: Numpy i kullanarak 3D matematik fonksiyon kütüphanesi +# URL: https://github.com/adamlwgriffiths/Pyrr +# Packager: milisarge +# Depends on: python3 python3-setuptools python3-multipledispatch python3-numpy + +name=python3-pyrr +version=0.9.2 +release=1 +source=(https://github.com/adamlwgriffiths/Pyrr/archive/${version}.tar.gz::$name-$version.tar.gz) + +build() { + cd "$SRC/Pyrr-$version" + python3 setup.py install --root="$PKG/" --optimize=1 +}