From 5f625edb04a97abc3c9bb8672c0ce9e9a42823fd Mon Sep 17 00:00:00 2001 From: yasarciv Date: Sat, 9 Sep 2017 16:36:12 +0300 Subject: [PATCH] yeni-talimatlar --- bin/fork-guncelle-builder | 4 +++ bin/{fork-guncelle => fork-guncelle-milis} | 0 talimatname/genel/greybird-theme/talimat | 26 +++++++++++++++++++ talimatname/genel/pa-applet/pa-applet.desktop | 12 +++++++++ talimatname/genel/pa-applet/talimat | 26 +++++++++++++++++++ talimatname/genel/thunar-vcs-plugin/talimat | 17 ++++++++++++ .../thunar-vcs-plugin.kur-kos | 1 + .../genel/xfce4-statusnotifier-plugin/talimat | 24 +++++++++++++++++ 8 files changed, 110 insertions(+) create mode 100644 bin/fork-guncelle-builder rename bin/{fork-guncelle => fork-guncelle-milis} (100%) create mode 100644 talimatname/genel/greybird-theme/talimat create mode 100644 talimatname/genel/pa-applet/pa-applet.desktop create mode 100644 talimatname/genel/pa-applet/talimat create mode 100644 talimatname/genel/thunar-vcs-plugin/talimat create mode 100644 talimatname/genel/thunar-vcs-plugin/thunar-vcs-plugin.kur-kos create mode 100644 talimatname/genel/xfce4-statusnotifier-plugin/talimat diff --git a/bin/fork-guncelle-builder b/bin/fork-guncelle-builder new file mode 100644 index 000000000..920db47e9 --- /dev/null +++ b/bin/fork-guncelle-builder @@ -0,0 +1,4 @@ +#!/bin/bash +git remote add upstream https://github.com/yakar/milis-builder.git +git fetch upstream +git pull upstream master diff --git a/bin/fork-guncelle b/bin/fork-guncelle-milis similarity index 100% rename from bin/fork-guncelle rename to bin/fork-guncelle-milis diff --git a/talimatname/genel/greybird-theme/talimat b/talimatname/genel/greybird-theme/talimat new file mode 100644 index 000000000..511737054 --- /dev/null +++ b/talimatname/genel/greybird-theme/talimat @@ -0,0 +1,26 @@ +# Description: Gri ve mavi bir xfce teması +# URL: https://github.com/shimmerproject/Greybird +# Packager: yasarciv67@gmail.com +# Depends on: gtk-engine-murrine gtk3 + +name=greybird-theme +version=3.22.4 +release=1 +source=(https://github.com/shimmerproject/Greybird/archive/v3.22.4.tar.gz +) + +build() { + + install -dm 755 "$PKG/usr/share/themes/Greybird Compact" + install -dm 755 "$PKG/usr/share/themes/Greybird a11y" + + cp -r "Greybird-$version/" "$PKG/usr/share/themes/Greybird/" + rm -rf "$PKG/usr/share/themes/Greybird/.gitignore" + + ln -s "/usr/share/themes/Greybird/xfwm4-compact" \ + "$PKG/usr/share/themes/Greybird Compact/xfwm4" + + ln -s "/usr/share/themes/Greybird/xfwm4-a11y" \ + "$PKG/usr/share/themes/Greybird a11y/xfwm4" + +} diff --git a/talimatname/genel/pa-applet/pa-applet.desktop b/talimatname/genel/pa-applet/pa-applet.desktop new file mode 100644 index 000000000..83d773766 --- /dev/null +++ b/talimatname/genel/pa-applet/pa-applet.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=0.9.4 +Type=Application +Name=pa-applet +Comment=Ses simgesini sistem çekmecesine ekler +Exec=pa-applet +OnlyShowIn=XFCE; +StartupNotify=false +Terminal=false +Hidden=false + diff --git a/talimatname/genel/pa-applet/talimat b/talimatname/genel/pa-applet/talimat new file mode 100644 index 000000000..b2b2ea07a --- /dev/null +++ b/talimatname/genel/pa-applet/talimat @@ -0,0 +1,26 @@ +# Description: PulseAudio kontrol uygulaması +# URL: https://github.com/fernandotcl/pa-applet +# Packager: yasarciv67@gmail.com +# Depends on: glib gtk3 libnotify pulseaudio + +name=pa-applet +version=2017.09 +release=1 +source=(pa-applet.desktop) + +build() { +git clone https://github.com/fernandotcl/pa-applet.git + cd "$name" + + echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) + + CFLAGS+=" -Wno-error" + ./autogen.sh + ./configure --prefix=/usr + make + make DESTDIR="$PKG/" install + + install -D -m644 LICENSE "${PKG}/usr/share/licenses/${name}/LICENSE" + cd .. + install -D pa-applet.desktop "$PKG/etc/xdg/autostart/pa-applet.desktop" +} diff --git a/talimatname/genel/thunar-vcs-plugin/talimat b/talimatname/genel/thunar-vcs-plugin/talimat new file mode 100644 index 000000000..760b25d66 --- /dev/null +++ b/talimatname/genel/thunar-vcs-plugin/talimat @@ -0,0 +1,17 @@ +# Description: Thunar için SVN ve GIT entegrasyonu. +# URL: http://goodies.xfce.org/projects/thunar-plugins/thunar-vcs-plugin +# Packager: yasarciv67@gmail.com +# Depends on: intltool thunar subversion apr + +name=thunar-vcs-plugin +version=0.1.5 +release=1 +source=(http://archive.xfce.org/src/thunar-plugins/thunar-vcs-plugin/${version%.*}/$name-$version.tar.bz2 +) + +build() { + cd $name-$version + ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 + make + make DESTDIR=$PKG install +} diff --git a/talimatname/genel/thunar-vcs-plugin/thunar-vcs-plugin.kur-kos b/talimatname/genel/thunar-vcs-plugin/thunar-vcs-plugin.kur-kos new file mode 100644 index 000000000..2faa73a76 --- /dev/null +++ b/talimatname/genel/thunar-vcs-plugin/thunar-vcs-plugin.kur-kos @@ -0,0 +1 @@ +gtk-update-icon-cache -f /usr/share/icons/hicolor diff --git a/talimatname/genel/xfce4-statusnotifier-plugin/talimat b/talimatname/genel/xfce4-statusnotifier-plugin/talimat new file mode 100644 index 000000000..f4317d85e --- /dev/null +++ b/talimatname/genel/xfce4-statusnotifier-plugin/talimat @@ -0,0 +1,24 @@ +# Description: Xfce4 panelindeki durum bildirim göstergelerine eklenti +# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-statusnotifier-plugin +# Packager: yasarciv67@gmail.com +# Depends on: intltool python3 xfce4-panel libdbusmenu-gtk3 + +name=xfce4-statusnotifier-plugin +version=0.2.0 +release=1 +source=(http://archive.xfce.org/src/panel-plugins/$name/${version%.*}/$name-$version.tar.bz2) + +build() { + cd "${name}-${version}" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libexecdir=/usr/lib \ + --disable-static + + make + make DESTDIR="${PKG}" install + +}