12345678910111213141516171819202122232425 |
- # Tanım: Çeşitli MATE modülleri için ortak API'li kitaplık
- # URL: http://www.mate-desktop.org/
- # Paketçi: yasarciv67
- # Gerekler: gobject-introspection intltool gtk3 startup-notification dconf
- # Grup: kütüphane
- isim=mate-desktop
- surum=1.20.0
- devir=1
- kaynak=(http://pub.mate-desktop.org/releases/${surum%.*}/$isim-$surum.tar.xz)
- derle() {
- cd $isim-$surum
- ./configure \
- --prefix=/usr \
- --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
- }
|