yeni-talimatlar

This commit is contained in:
yasarciv 2017-09-09 16:36:12 +03:00
parent 09dd19c600
commit 5f625edb04
8 changed files with 110 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#!/bin/bash
git remote add upstream https://github.com/yakar/milis-builder.git
git fetch upstream
git pull upstream master

View File

@ -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"
}

View File

@ -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

View File

@ -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"
}

View File

@ -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
}

View File

@ -0,0 +1 @@
gtk-update-icon-cache -f /usr/share/icons/hicolor

View File

@ -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
}