mate.paketlendi

This commit is contained in:
milisarge 2017-06-23 14:09:15 +03:00
parent 00e9d121df
commit 53dac5a172
68 changed files with 686 additions and 443 deletions

19
talimatname/genel/atril/talimat Executable file → Normal file
View File

@ -1,10 +1,10 @@
# Description: Basit bir pdf belge görüntüleyici
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Depends on: caja dconf djvulibre gtk2 libsecret libspectre mate-desktop mate-icon-theme poppler-glib poppler
# Description: MATE belge görüntüleyici
# URL: http://mate-desktop.org
# Packager: yasarciv67@gmail.com
# Depends on: caja caja-extensions gobject-introspection intltool itstool djvulibre libspectre poppler-glib webkitgtk2
name=atril
version=1.16.1
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
@ -14,7 +14,6 @@ cd $name-$version
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--with-gtk=2.0 \
--enable-gtk-doc \
--enable-djvu \
--enable-dvi \
--enable-epub \
@ -22,8 +21,12 @@ cd $name-$version
--enable-pixbuf \
--enable-comics \
--enable-xps \
--enable-introspection \
--disable-static
--enable-introspection
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1,18 +1,17 @@
# Description: Caja uzantıları (ortak dosyalar)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Description: Caja eklentileri
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: caja gupnp
name=caja-extensions
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/${name}-$version.tar.xz)
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd ${name}-$version
./configure \
--prefix=/usr \
--with-gtk=2.0
make
make DESTDIR=$PKG install
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}

10
talimatname/genel/caja/caja.kur-kos Normal file → Executable file
View File

@ -1,4 +1,6 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
update-mime-database /usr/share/mime/ > /dev/null
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
update-desktop-database -q
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,23 +1,24 @@
# Description: MATE için dosya yöneticisi (GTK2 versiyon)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: exempi mate-desktop pango gtk2 libexif libxml2 libunique1 desktop-file-utils
# Description: MATE için dosya yöneticisi
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: exempi gvfs libexif xorg-libsm mate-desktop libnotify gstreamer1 gobject-introspection intltool
name=caja
version=1.16.1
version=1.18.3
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--libexecdir=/usr/lib/$name \
--with-gtk=2.0 \
--enable-unique \
--enable-introspection \
--disable-static \
--disable-update-mimedb
make
make DESTDIR=$PKG install
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

8
talimatname/genel/engrampa/engrampa.kur-kos Normal file → Executable file
View File

@ -1,3 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
update-desktop-database -q
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -0,0 +1,60 @@
This makes Engrampa use bsdtar to extract .RPM packages instead of using cpio.
It is useful on systems that do not have cpio or RPM/YUM
This patch was created for Arch Linux, however should work on any system that has bsdtar capable of handling cpio archives.
------------------+
rpm2cpio.c | 2 +-
fr-command-rpm.c | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
Index: src/commands/rpm2cpio.c
================================
--- mate-file-archiver-1.6.0/src/commands/rpm2cpio.c 2013-03-31
+++ mate-file-archiver-1.6.0/src/commands/rpm2cpio.c 2013-07-26
@@ -128,7 +128,7 @@
archive_command = "bzip2 -dc";
fclose (stream);
- command = g_strdup_printf ("sh -c \"dd if=%s ibs=%u skip=1 2>/dev/null | %s | cpio %s\"", g_shell_quote (filename), offset, archive_command, cpio_args->str);
+ command = g_strdup_printf ("sh -c \"dd if=%s ibs=%u skip=1 2>/dev/null | %s | bsdtar %s\"", g_shell_quote (filename), offset, archive_command, cpio_args->str);
return system (command);
}
Index: src/fr-command-rpm.c
================================
--- mate-file-archiver-1.6.0/src/fr-command-rpm.c 2013-03-31
+++ mate-file-archiver-1.6.0/src/fr-command-rpm.c 2013-07-26
@@ -175,7 +175,7 @@
fr_process_begin_command (comm->process, "sh");
fr_process_add_arg (comm->process, "-c");
- fr_process_add_arg_concat (comm->process, PRIVEXECDIR "rpm2cpio ", comm->e_filename, " -itv", NULL);
+ fr_process_add_arg_concat (comm->process, PRIVEXECDIR "rpm2cpio ", comm->e_filename, " -tvf -", NULL);
fr_process_end_command (comm->process);
fr_process_start (comm->process);
}
@@ -200,7 +200,7 @@
cmd = g_string_new (PRIVEXECDIR "rpm2cpio ");
g_string_append (cmd, comm->e_filename);
- g_string_append (cmd, " -idu ");
+ g_string_append (cmd, " -xf - ");
for (scan = file_list; scan; scan = scan->next) {
char *filename = g_shell_quote (scan->data);
g_string_append (cmd, filename);
@@ -233,7 +233,7 @@
FrCommandCap capabilities;
capabilities = FR_COMMAND_CAN_ARCHIVE_MANY_FILES;
- if (is_program_available ("cpio", check_command))
+ if (is_program_available ("bsdtar", check_command))
capabilities |= FR_COMMAND_CAN_READ;
return capabilities;
@@ -244,7 +244,7 @@
fr_command_rpm_get_packages (FrCommand *comm,
const char *mime_type)
{
- return PACKAGES ("cpio,rpm");
+ return PACKAGES ("bsdtar,rpm");
}

View File

@ -1,21 +1,26 @@
# Description: MATE için arşiv manipülatörü (GTK2 sürümü)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Depends on: caja json-glib
# Description: MATE için bir dosya arşivleyici
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: caja intltool itstool gtk3 gzip libarchive tar unzip zip p7zip unrar
name=engrampa
version=1.16.0
version=1.18.2
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz \
fr-rpm-bsdtar.patch)
build() {
cd $name-$version
./configure \
cd $name-$version
# This patch 'depends' on libarchive
patch -Np1 -i "$SRC/fr-rpm-bsdtar.patch"
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--with-gtk=2.0 \
--disable-static \
--libexecdir=/usr/lib/$name \
--disable-packagekit
make
make DESTDIR=$PKG install
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

8
talimatname/genel/eom/eom.kur-kos Normal file → Executable file
View File

@ -1,3 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
update-desktop-database -q
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,20 +1,24 @@
# Description: MATE için bir resim görüntüleme ve kataloglama programı (GTK2 sürümü)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Depends on: exempi gtk3 gtk-update-icon-cache libexif mate-desktop mate-icon-theme python-gobject2 python-gtk
# Description: MATE için bir resim gösterici
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: gobject-introspection intltool itstool dbus-glib exempi lcms2 libexif libjpeg-turbo mate-desktop libpeas librsvg
name=eom
version=1.16.0
version=1.18.2
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--localstatedir=/var \
--with-librsvg \
--disable-python
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -0,0 +1 @@
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas

View File

@ -0,0 +1,21 @@
# Description: MATE klavye kitaplığı
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool gtk3 xorg-libxklavier
name=libmatekbd
version=1.18.2
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -0,0 +1,23 @@
# Description: MATE masaüstü için ses karıştırıcı kitaplığı
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool glib pulseaudio
name=libmatemixer
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -0,0 +1,3 @@
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/mate

View File

@ -0,0 +1,25 @@
# Description: Internet'ten hava durumuna erişim sağlar.
# URL: http://www.mate-desktop.org/
# Packager: yasarciv@gmail.com
# Depends on: intltool gtk3 libsoup
name=libmateweather
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-python \
--enable-locations-compression
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

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

View File

@ -1,17 +1,18 @@
# Description: A GObject-tabanlı eklenti
# URL: http://ftp.gnome.org/pub/gnome/sources/libpeas
# Packager: Cihan Alkan
# Depends on: gtk3
# Description: Gobject tabanlı eklenti motoru
# URL: https://wiki.gnome.org/Projects/Libpeas
# Packager: yasarciv67@gmail.com
# Depends on: gtk-doc intltool python-gobject python-gobject2 glade gobject-introspection gnome-common gtk3
name=libpeas
version=1.20.0
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/1.20/$name-$version.tar.xz)
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
make
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}

5
talimatname/genel/marco/marco.kur-kos Normal file → Executable file
View File

@ -1 +1,4 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/update-desktop-database

View File

@ -1,22 +1,23 @@
# Description: MATE için pencere yöneticisi (GTK2 version)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: mate-desktop gtk2 libcanberra libgtop startup-notification zenity
# Description: MATE için bir pencere yöneticisi
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: libcanberra libgtop mate-desktop zenity intltool itstool
name=marco
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--with-gtk=2.0 \
--enable-startup-notification \
--disable-static
make
make DESTDIR=$PKG install
--enable-startup-notification
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

5
talimatname/genel/mate-applets/mate-applets.kur-kos Normal file → Executable file
View File

@ -1,2 +1,3 @@
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas > /dev/null 2>&1
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor

View File

@ -1,25 +1,23 @@
# Description: MATE paneli için appletler
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Depends on: gtksourceview2 libgtop libnotify mate-panel mate-icon-theme python-gobject upower wireless-tools upower
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool gtksourceview3 libgtop libnotify mate-panel polkit dbus-python python-gobject2 upower wireless-tools
name=mate-applets
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
sed -i 's/env python/env python2/' invest-applet/invest/{chart.py,invest-applet.py,mate-invest-chart}
PYTHON=/usr/bin/python2 ./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/${name} \
--with-cpufreq-lib=cpupower \
--libexecdir=/usr/lib/$name \
--enable-polkit \
--enable-ipv6 \
--enable-upower \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
--enable-ipv6
make
make DESTDIR=$PKG install
}

View File

@ -1,16 +1,17 @@
# Description: MATE için arkaplan resim ve veri dosyaları
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Description: MATE için arka plan resimleri ve verileri
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool
name=mate-backgrounds
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}

View File

@ -0,0 +1,3 @@
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/update-desktop-database

View File

@ -0,0 +1,17 @@
# Description: MATE masaüstü için hesap makinesi
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool gtk3
name=mate-calc
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}

20
talimatname/genel/mate-common/talimat Executable file → Normal file
View File

@ -1,17 +1,17 @@
# Description: MATE için ortak geliştirme makroları
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: intltool
# Description: MATE için yaygın geliştirme makroları
# URL: http://www.mate-desktop.org
# Packager: yasarciv67@gmail.com
# Depends on: gtk-doc intltool
name=mate-common
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/${name}-${version}.tar.xz)
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
}

View File

@ -1,4 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
update-mime-database /usr/share/mime/ > /dev/null
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
update-desktop-database -q
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,23 +1,26 @@
# Description: MATE için Kontrol Merkezi
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: murrine caja dconf desktop-file-utils gsettings-desktop-schemas gtk2 libgtop librsvg libunique1 xorg-libxscrnsaver xorg-libxt mate-desktop mate-icon-theme mate-libkbd mate-menus marco mate-settings-daemon
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool mate-desktop mate-menus mate-settings-daemon marco xorg-libxscrnsaver
name=mate-control-center
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--disable-scrollkeeper \
--enable-aboutme \
--disable-update-mimedb
make
make DESTDIR=$PKG install
rm -f $PKG/usr/share/applications/mimeinfo.cache
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--sbindir=/usr/bin \
--localstatedir=/var \
--disable-update-mimedb
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
rm $PKG/usr/share/applications/mimeinfo.cache
}

6
talimatname/genel/mate-desktop/mate-desktop.kur-kos Normal file → Executable file
View File

@ -1 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

28
talimatname/genel/mate-desktop/talimat Executable file → Normal file
View File

@ -1,23 +1,23 @@
# Description: Çeşitli MATE modülleri için ortak API'li kitaplık
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: dconf gtk2 startup-notification
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: gobject-introspection intltool gtk3 startup-notification dconf
name=mate-desktop
version=1.16.1
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/${name}-${version}.tar.xz)
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
./configure \
--prefix=/usr \
--with-gtk=2.0 \
--enable-mpaste \
--disable-static \
--disable-schemas-compile \
--disable-desktop-docs \
--enable-gtk-doc
make
make DESTDIR=$PKG install
--disable-schemas-compile
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1,3 +1,4 @@
gtk-update-icon-cache -q -t -f /usr/share/icons/matefaenza
gtk-update-icon-cache -q -t -f /usr/share/icons/matefaenzadark
gtk-update-icon-cache -q -t -f /usr/share/icons/matefaenzagray
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/matefaenza
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/matefaenzadark
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/matefaenzagray

View File

@ -1,17 +1,18 @@
# Description: MATE için Faenza ikon teması
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Depends on: mate-common gtk-update-icon-cache
# Description: MATE için Faenza simge teması
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: mate-common
name=mate-icon-theme-faenza
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./autogen.sh --prefix=/usr
make
make DESTDIR=$PKG install
rm -f $PKG/usr/share/icons/matefaenza/icon-theme.cache
cd $name-$version
./autogen.sh
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}

View File

@ -1,2 +1,3 @@
gtk-update-icon-cache -q -t -f /usr/share/icons/mate
gtk-update-icon-cache -q -t -f /usr/share/icons/menta
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/mate
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/menta

View File

@ -1,17 +1,18 @@
# Description: MATE simge teması
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: gtk-update-icon-cache icon-naming-utils intltool
# Description: MATE için simge teması
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: icon-naming-utils intltool
name=mate-icon-theme
version=1.16.0
version=1.18.2
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/${name}-$version.tar.xz)
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -f $PKG/usr/share/icons/mate/icon-theme.cache
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}

View File

@ -1,2 +1 @@
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas > /dev/null 2>&1
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor

View File

@ -1,17 +1,19 @@
# Description: Applet MATE
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Depends on: gtk2 mate-libindicator mate-panel
# Description: MATE panelindeki çeşitli uygulamalardan gelen bilgileri görüntülemek için küçük bir applet
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: libindicator mate-panel
name=mate-indicator-applet
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexec=/usr/lib/${name} \
--disable-static
make
make DESTDIR=$PKG install
./configure --prefix=/usr \
--libexecdir=/usr/lib/$name
make
make DESTDIR=$PKG install
}

3
talimatname/genel/mate-media/mate-media.kur-kos Normal file → Executable file
View File

@ -1,2 +1 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/mate
/usr/bin/update-desktop-database

View File

@ -1,23 +1,20 @@
# Description: MATE medya araçları (GStreamer)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: gobject-introspection gtk2 libcanberra libunique1 libxml2 mate-desktop mate-libmixer marco
# Description: MATE için medya araçları
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool libcanberra libmatemixer mate-desktop
name=mate-media
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/${name} \
--localstatedir=/var \
--with-gtk=2.0 \
--disable-static
make
make
make DESTDIR=$PKG install
--libexecdir=/usr/lib/$name \
--localstatedir=/var
make
make DESTDIR=$PKG install
}

View File

@ -1,21 +1,25 @@
# Description: MATE menüsü
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: intltool glib gobject-introspection python
# Description: Freedesktop.org'dan Masaüstü Menüsü Teknik Özelliklerini uygulayan bir kütüphane
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: glib gobject-introspection intltool python
name=mate-menus
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-python \
--disable-static
make
make DESTDIR=$PKG install
cd $name-$version
PYTHON=/usr/bin/python2 ./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-python
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1,21 +1,19 @@
# Description: Basit bir pencere yönetim aracı (GTK2 sürümü)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: gtk2 libwnck libfakekey libunique1 mate-panel
# Description: Basit bir pencere yönetim aracı
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool libfakekey mate-panel
name=mate-netbook
version=1.16.1
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexec=/usr/lib/${name} \
--sysconfdir=/etc \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
--libexec=/usr/lib/$name \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}

View File

@ -1,2 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,19 +1,23 @@
# Description: MATE için bildirim sihirbazı
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: dconf gtk2 libcanberra libwnck libnotify
# Description: MATE için bildirim uygulaması
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: dbus-glib libcanberra libwnck3 libnotify intltool
name=mate-notification-daemon
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib/${name} \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/$name
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

7
talimatname/genel/mate-panel/mate-panel.kur-kos Normal file → Executable file
View File

@ -1,2 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,22 +1,28 @@
# Description: MATE paneli
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: caja gobject-introspection gtk2 libcanberra xorg-libice librsvg libsoup xorg-libsm xorg-libxau libwnck marco mate-desktop mate-libweather mate-menus mate-session-manager
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: dbus-glib libwnck3 libcanberra libmateweather xorg-libsm mate-menus mate-desktop intltool itstool gobject-introspection
name=mate-panel
version=1.16.0
version=1.18.3
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib/${name} \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--localstatedir=/var \
--with-gtk=2.0 \
--enable-introspection \
--disable-static
make
make DESTDIR=$PKG install
--with-gtk=3.0
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}
# vim: set ts=2 et:

View File

@ -1,23 +1,26 @@
# Description: MATE masaüstü için PolicyKit entegrasyonu
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: polkit gtk3
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: gtk3 polkit accountsservice gobject-introspection intltool
name=mate-polkit
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--localstatedir=/var \
--with-gtk=2.0 \
--enable-introspection \
--disable-static
make
make DESTDIR=$PKG install
--enable-introspection
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1,2 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,25 +1,23 @@
# Description: MATE güç yöneticisi
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: dconf libgnome-keyring libcanberra libnotify libunique1 mate-desktop mate-panel upower gvfs
# Description: MATE masaüstü için güç yönetim aracı
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool mate-panel dbus-glib libcanberra libgnome-keyring libnotify upower
name=mate-power-manager
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--localstatedir=/var \
--sbindir=/usr/bin \
--enable-applets \
--enable-unique \
--with-gtk=2.0 \
--disable-strict
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
}

View File

@ -1 +1,3 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/update-desktop-database

View File

@ -1,26 +1,25 @@
# Description: MATE için ekran koruyucusu
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: gtk2 libnotify xorg-libxscrnsaver mate-desktop mate-libkbd mate-menus mate-power-manager mate-session-manager xorg-libxscrnsaver
# Description: MATE için ekran koruyucu ve kilitleyici
# URL: http://www.mate-desktop.org
# Packager: yasarciv67@gmail.com
# Depends on: intltool libmatekbd libnotify xorg-libxscrnsaver mate-desktop mate-menus mate-session-manager
name=mate-screensaver
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--with-xscreensaverdir=/usr/share/xscreensaver/config \
--with-xscreensaverhackdir=/usr/lib/xscreensaver \
--with-mit-ext \
--with-libnotify \
--enable-locking \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
--without-console-kit
make
make DESTDIR=$PKG install
}

View File

@ -1,2 +1,3 @@
usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas > /dev/null 2>&1
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor

View File

@ -1,20 +1,22 @@
# Description: Donanım sensörlerinden okumaları görüntülemek için bir MATE Panel uygulaması.
# URL: http://www.jwz.org/xscreensaver/
# Packager: yasarciv
# Depends on: gtk2 libatasmart libnotify lm-sensors mate-panel
# Description: İşlemci sıcaklığı, fan hızı ve voltaj okumaları da dahil olmak üzere donanım sensörlerinden okumaları görüntülemek için kullanılan MATE Panel uygulaması
# URL: http://www.mate-desktop.org
# Packager: yasarciv67@gmail.com
# Depends on: docbook-xsl intltool itstool libatasmart libnotify lm-sensors mate-panel
name=mate-sensors-applet
version=1.16.0
version=1.18.2
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
--libexecdir=/usr/lib/$name
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1,2 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,21 +1,22 @@
# Description: MATE Oturum Yöneticisi
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: gtk2 mate-desktop mate-polkit mate-settings-daemon xorg-libsm xorg-libxtst
# Description: MATE oturum yönetici ve yapılandırma programı
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: dbus-glib gtk3 xorg-libsm mate-desktop intltool xorg-xtrans gnome-keyring xdg-user-dirs
name=mate-session-manager
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib/${name} \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--localstatedir=/var \
--with-gtk=2.0 \
--enable-upower
make
make DESTDIR=$PKG install
--disable-upower
make
make DESTDIR=$PKG install
}

View File

@ -1,2 +1,6 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/mate

View File

@ -1,21 +1,25 @@
# Description: MATE ayar sihirbazı (GTK2 version)
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: dconf gtk2 libcanberra libnotify mate-desktop mate-libkbd mate-libmixer nss xorg-libxt
# Description: MATE Ayarlar programı
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: dbus-glib libcanberra libmatekbd libmatemixer libnotify mate-desktop nss polkit intltool
name=mate-settings-daemon
version=1.16.0
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--localstatedir=/var \
--with-gtk=2.0
make
make DESTDIR=$PKG install
--enable-polkit \
--enable-pulse
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1 +1,3 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/update-desktop-database

View File

@ -1,21 +1,19 @@
# Description: MATE için bir sistem izleyici
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: dconf gtk2 gtkmm3 glibmm libgtop libwnck3 librsvg mate-icon-theme
# Description: MATE için bir sistem monitörü
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool gtkmm3 libgtop libwnck3
name=mate-system-monitor
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--localstatedir=/var \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
--libexecdir=/usr/lib/$name \
--localstatedir=/var
make
make DESTDIR=$PKG install
}

4
talimatname/genel/mate-terminal/mate-terminal.kur-kos Normal file → Executable file
View File

@ -1 +1,3 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/update-desktop-database

View File

@ -1,19 +1,17 @@
# Description: MATE için terminal uygulaması
# URL: http://www.jwz.org/xscreensaver/
# Packager: yasarciv
# Depends on: gtk2 mate-desktop vte
# Description: MATE terminal emülatorü
# URL: http://www.mate-desktop.org
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool xorg-libsm mate-desktop vte3 dconf
name=mate-terminal
version=1.14.1
version=1.18.1
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}

View File

@ -1,11 +1,11 @@
# Description: MATE temaları
# URL: http://matsusoft.com.ar/projects/mate
# Packager: milisarge yasarciv
# Depends on: gtk2
# Depends on: gtk2 intltool gtk-engines gtk-engine-murrine mate-icon-theme
name=mate-themes
version=3.20.7
version=3.22.12
release=1
source=(http://pub.mate-desktop.org/releases/themes/${version%.*}/${name}-${version}.tar.xz)

View File

@ -1,19 +1,19 @@
# Description: Mate kullanım kılavuzu
# URL: http://www.jwz.org/xscreensaver/
# Packager: yasarciv
# Depends on: itstool intltool
# Description: MATE Kullanım Kılavuzu
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: yelp itstool intltool
name=mate-user-guide
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--with-gtk=2.0 \
--disable-static
make
make DESTDIR=$PKG install
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}

View File

@ -1,23 +1,24 @@
# Description: MATE için WebDAV üzerinden kullanıcı düzeyinde ortak dosya paylaşımı
# URL: http://www.jwz.org/xscreensaver/
# Packager: yasarciv
# Depends on: apache bluez caja dconf gdk-pixbuf gtk2 libnotify libcanberra libunique1 mod-dnssd
# Description: MATE için WebDAV aracılığıyla kullanıcı düzeyinde ortak dosya paylaşımı
# URL: http://www.mate-desktop.org
# Packager: yasarciv67@gmail.com
# Depends on: caja dbus-glib intltool itstool libcanberra libnotify gtk3 mod-dnssd
name=mate-user-share
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
PYTHON=/usr/bin/python2 ./configure \
--prefix=/usr \
--libexec=/usr/lib/${name} \
--libexec=/usr/lib/$name \
--sysconfdir=/etc \
--disable-static \
--disable-scrollkeeper \
--disable-bluetooth
make
make DESTDIR=$PKG install
rm -f ${PKG}/usr/share/mate-user-share/dav_user_2.0.conf
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

7
talimatname/genel/mate-utils/mate-utils.kur-kos Normal file → Executable file
View File

@ -1,2 +1,5 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
gtk-update-icon-cache -q -t -f /usr/share/icons/mate
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,21 +1,25 @@
# Description: Disk kullanımını görüntülemek için ortak MATE yardımcı programları.
# URL: http://www.jwz.org/xscreensaver/
# Packager: yasarciv
# Depends on: gtk2 mate-panel libgtop
# Description: Disk kullanımı, günlükleri ve yazı tiplerini görüntüleme, ekran görüntüsü alma, sözlükleri yönetme ve dosyaları arama için ortak MATE yardımcı programları
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool mate-panel mate-desktop libcanberra libgtop xorg-libsm
name=mate-utils
version=1.16.0
version=1.18.2
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--with-gtk=2.0 \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--disable-static
make
make DESTDIR=$PKG install
--disable-maintainer-flags
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1,7 +1,7 @@
# Description: sistem
# URL: sistem
# Packager: yasarciv
# Depends on: xorg gtkmm3 caja marco mate-backgrounds mate-common mate-control-center mate-desktop mate-icon-theme mate-libkbd mate-libmixer mate-libweather mate-media mate-menus mate-notification-daemon mate-panel mate-polkit mate-power-manager mate-screensaver mate-session-manager mate-settings-daemon mate-system-monitor mate-themes atril caja-extensions engrampa eom mate-applets mate-icon-theme-faenza mate-indicator-applet mate-libindicator mate-netbook mate-screensaver-hacks mate-sensors-applet mate-terminal mate-user-guide mate-user-share mate-utils mozo pluma python-caja
# URL: sistem
# Packager: yasarciv67@gmail.com
# Depends on: atril caja caja-extensions engrampa eom libmatekbd libmatemixer libmateweather libpeas marco mate-applets mate-backgrounds mate-calc mate-common mate-control-center mate-desktop mate-icon-theme mate-icon-theme-faenza mate-indicator-applet mate-media mate-menus mate-netbook mate-notification-daemon mate-panel mate-polkit mate-power-manager mate-screensaver mate-sensors-applet mate-session-manager mate-settings-daemon mate-system-monitor mate-terminal mate-themes mate-user-guide mate-user-share mate-utils mozo pluma python-caja
name=mate-sistem
version=1

4
talimatname/genel/mozo/mozo.kur-kos Normal file → Executable file
View File

@ -1 +1,3 @@
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
/usr/bin/update-desktop-database

View File

@ -1,17 +1,17 @@
# Description: MATE menü düzenleme aracı
# URL: http://www.jwz.org/xscreensaver/
# Packager: yasarciv
# Depends on: mate-menus python-gobject gtk-update-icon-cache
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool gtk3 mate-menus python-gobject2
name=mozo
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
PYTHON=/usr/bin/python2 ./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
}

5
talimatname/genel/pluma/pluma.kur-kos Normal file → Executable file
View File

@ -1,2 +1,3 @@
glib-compile-schemas /usr/share/glib-2.0/schemas/
update-desktop-database -q
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
/usr/bin/update-desktop-database

View File

@ -1,21 +1,25 @@
# Description: MATE için güçlü bir metin editörü
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: enchant gtk2 libsoup iso-codes gtksourceview2 mate-desktop python-gobject2 python-gtk python-gtksourceview2
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool itstool gobject-introspection iso-codes gtksourceview3 libpeas
name=pluma
version=1.14.1
version=1.18.2
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
cd $name-$version
sed -i 's/python/python2/' plugins/externaltools/data/switch-c.tool.in
PYTHON=/usr/bin/python2 ./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${name} \
--with-gtk=2.0 \
--libexecdir=/usr/lib/$name \
--enable-gtk-doc=no \
--enable-python
make
make DESTDIR=$PKG install
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}

View File

@ -1,18 +1,22 @@
# Description: Caja için Python
# URL: http://matsusoft.com.ar/projects/mate
# Packager: yasarciv
# Depends on: caja python-gobject2
# Description: Python Caja için bağlama, Caja özellik sayfası ve menü öğesi uzantılarının Python'da yazılmasına izin vermek
# URL: http://www.mate-desktop.org/
# Packager: yasarciv67@gmail.com
# Depends on: intltool caja python-gobject
name=python-caja
version=1.16.0
version=1.18.0
release=1
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
cd $name-$version
sed -i 's/python-config/python2-config/' configure
PYTHON=/usr/bin/python2 ./configure \
--prefix=/usr
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}