1234567891011121314151617181920212223242526 |
- # Tanım: MATE için WebDAV aracılığıyla kullanıcı düzeyinde ortak dosya paylaşımı
- # URL: http://www.mate-desktop.org
- # Paketçi: yasarciv67@gmail.com
- # Gerekler: caja dbus-glib intltool itstool libcanberra libnotify gtk3 mod-dnssd
- # Grup: sistem
- isim=mate-user-share
- surum=1.20.0
- devir=1
- kaynak=(http://pub.mate-desktop.org/releases/${surum%.*}/$isim-$surum.tar.xz)
- derle() {
- cd $isim-$surum
- PYTHON=/usr/bin/python2 ./configure \
- --prefix=/usr \
- --libexec=/usr/lib/$isim \
- --sysconfdir=/etc \
- --disable-bluetooth
- #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
- }
|