yeni-ekleme-düzenlemeler

This commit is contained in:
yasarciv 2017-09-01 10:15:34 +03:00
parent 67eb31bd87
commit 64101e2071
12 changed files with 207 additions and 18 deletions

View File

@ -4,13 +4,13 @@
# Depends on:
name=gnuchess
version=6.2.4
version=6.2.5
release=1
source=(http://ftp.gnu.org/pub/gnu/chess/gnuchess-6.2.4.tar.gz)
source=(http://ftp.gnu.org/pub/gnu/chess/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG/usr install
make DESTDIR=$PKG install
}

View File

@ -0,0 +1,15 @@
# Description: Linux için bir Gtk teması
# URL: https://www.xfce-look.org/p/1176474/
# Packager: yasarciv67@gmail.com
# Depends on:
name=greybird-gtk-theme
version=3.22
release=1
source=(https://dl.opendesktop.org/api/files/download/id/1495049712/GreybirdClassicTR_GTK3_22.tar.gz)
build() {
cd GreybirdClassicTR_GTK3_22
install -d "$PKG/usr/share/themes"
cp -a * "$PKG/usr/share/themes/"
}

View File

@ -0,0 +1,26 @@
# Description: Göstergeler için kullanılan pencere öğeleri ve diğer nesneler
# URL: https://launchpad.net/ido
# Packager: yasarciv67@gmail.com
# Depends on: gtk3
name=ido
version=12.10.2
release=1
source=(https://launchpad.net/$name/${version%.*}/$version/+download/$name-$version.tar.gz
)
build() {
cd $name-${version}
export CFLAGS="$CFLAGS -Wno-deprecated-declarations"
./configure \
--prefix='/usr' \
--localstatedir='/var' \
--sysconfdir='/etc'
make
make DESTDIR="${PKG}" install
# vim: ts=2 sw=2 et:
}

View File

@ -0,0 +1,30 @@
# Description: Birleştirilmiş ses menü göstergesi.
# URL: https://launchpad.net/indicator-sound
# Packager: yasarciv67@gmail.com
# Depends on: intltool vala ido libdbusmenu-gtk3 libgee libindicator-gtk3 pulseaudio libnotify
name=indicator-sound
version=12.10.2
release=1
source=(https://launchpad.net/$name/${version%.*}/$version/+download/$name-$version.tar.gz
http://pkgbuild.com/~bgyorgy/sources/indicator-sound-translations-20130310.tar.gz
)
build() {
cd ${name}-${version}
# Install updated language files
rename ${name}- '' ../po/${name}-*.po
mv -f -t po ../po/*
printf "%s\n" po/*.po | sed -e 's/po\///g' -e 's/\.po//g' >po/LINGUAS
export CFLAGS="$CFLAGS -Wno-deprecated-declarations"
./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' --libexecdir="/usr/lib/${name}" --disable-{schemas-compile,static}
make
make DESTDIR="${PKG}" install
# Fix icon names to provide the playlist icon
install -dm 755 "${PKG}"/usr/share/libindicator/icons/hicolor/{16x16,scalable}/mimetypes
mv "${PKG}"/usr/share/libindicator/icons/hicolor/16x16/{status/sound-icon.png,mimetypes/playlist.png}
mv "${PKG}"/usr/share/libindicator/icons/hicolor/scalable/{status/sound-icon.svg,mimetypes/playlist.svg}
rm -r "${PKG}"/usr/share/libindicator/icons/hicolor/{16x16,scalable}/status
# vim: ts=2 sw=2 et:
}

View File

@ -1,19 +1,22 @@
# Description : DBusMenu protokolünün Glib uygulaması sağlayan kitaplık
# URL: https://launchpad.net/dbusmenu
# Packager: milisarge
# Depends on: python gobject-introspection gtk2 gtk3 glib vala gnome-doc-utils atk libepoxy json-glib
# Depends on: python gobject-introspection gtk2 gtk3 glib vala gnome-doc-utils atk libepoxy json-glib gnome-common pkg-config valgrind
name=libdbusmenu-glib
_name=libdbusmenu
release=1
version=0.5.90
version=16.04.0
source=(http://launchpad.net/dbusmenu/0.6/${version}/+download/${_name}-$version.tar.gz )
source=(https://launchpad.net/${_name}/${version%.*}/${version}/+download/${_name}-${version}.tar.gz )
build() {
cd libdbusmenu-$version
export HAVE_VALGRIND_TRUE='#'
export HAVE_VALGRIND_FALSE=''
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
cd $_name-$version
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$_name \
--disable-static --disable-scrollkeeper --disable-tests
make

View File

@ -5,20 +5,23 @@
name=libdbusmenu-gtk2
_name=libdbusmenu
release=2
version=0.5.90
release=1
version=16.04.0
source=(http://launchpad.net/dbusmenu/0.6/${version}/+download/${_name}-$version.tar.gz )
source=(http://launchpad.net/$_name/${version%.*}/${version}/+download/${_name}-$version.tar.gz )
build() {
cd libdbusmenu-$version
mkdir build-gtk2
cd build-gtk2
../configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$name \
--disable-static --disable-scrollkeeper --disable-tests --with-gtk=2
export HAVE_VALGRIND_TRUE='#'
export HAVE_VALGRIND_FALSE=''
cd $_name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-{dumper,static,tests} \
--with-gtk=2
make
make -C libdbusmenu-glib DESTDIR=$PKG install
make -C libdbusmenu-gtk DESTDIR=$PKG install
make -C libdbusmenu-glib DESTDIR=$PKG uninstall
}
}

View File

@ -0,0 +1,27 @@
# Description: DBusMenu protokolünün GTK3 uygulaması olan kitaplık
# URL: https://launchpad.net/dbusmenu
# Packager: milisarge
# Depends on: python gobject-introspection gtk2 gtk3 libdbusmenu-glib vala gnome-doc-utils atk libepoxy json-glib
name=libdbusmenu-gtk3
_name=libdbusmenu
release=1
version=16.04.0
source=(http://launchpad.net/$_name/${version%.*}/${version}/+download/${_name}-$version.tar.gz )
build() {
export HAVE_VALGRIND_TRUE='#'
export HAVE_VALGRIND_FALSE=''
cd $_name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-{dumper,static,tests} \
--with-gtk=3
make
make -C libdbusmenu-glib DESTDIR=$PKG install
make -C libdbusmenu-gtk DESTDIR=$PKG install
make -C libdbusmenu-glib DESTDIR=$PKG uninstall
}

View File

@ -0,0 +1,18 @@
# Description: GObject koleksiyon kütüphanesi (eski)
# URL: http://www.gnome.org/
# Packager: milisarge
# Depends on: glib gobject-introspection vala
name=libgee06
_name=libgee
version=0.6.8
release=1
source=(http://ftp.acc.umu.se/pub/gnome/sources/$_name/${version%.*}/$_name-$version.tar.xz)
build() {
cd $_name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}

View File

@ -4,7 +4,7 @@
# Depends on: gconf gtk2 expat hunspell libgcrypt nss xorg-libxtst libnotify xdg-utils xorg-libxscrnsaver alsa-lib libgnome-keyring
name=slack
version=2.6.3
version=2.7.1
release=1
source=(https://slack-ssb-updates.global.ssl.fastly.net/linux_releases/slack-desktop-$version-amd64.deb
$name.desktop)

View File

@ -0,0 +1,19 @@
# Description: Xfce4 panelindeki uygulamalardan bilgi görüntülemek için eklenti
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin
# Packager: yasarciv67@gmail.com
# Depends on: intltool xfce4-dev-tools hicolor-icon-theme ido libindicator libindicator-gtk2 libindicator xfce4-panel xdg-utils
name=xfce4-indicator-plugin
version=2.3.3
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
}

View File

@ -0,0 +1,21 @@
# Description: Xfce için pulseaudio kullanan bir ses tuşları kontrol programı
# URL: https://git.xfce.org/apps/xfce4-volumed-pulse
# Packager: milisarge
# Depends on: libnotify pulseaudio keybinder xfconf
name=xfce4-volumed-pulse
version=0.2.2
release=1
source=(http://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2
)
build() {
cd $name-$version
./configure --prefix=/usr --sysconfdir=/etc \
--libexecdir=/usr/lib \
--localstatedir=/var
make
make DESTDIR="$PKG" install
}

View File

@ -0,0 +1,27 @@
# Description: Basit bir istemci-sunucu yapılandırması depolama ve sorgu sistemi
# URL: http://xfce.org/
# Packager: yasarciv67@gmail.com
# Depends on: xfce4-libutil dbus-glib
name=xfconf
version=4.12.0
release=1
source=(http://archive.xfce.org/xfce/4.12/src/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--disable-static \
--with-perl-options=INSTALLDIRS="vendor" \
--disable-debug
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
find "$PKG" -name Xfconf.so -exec chrpath -d {} +
}