talimat 638 B

123456789101112131415161718192021222324
  1. # Tanım: Gobject tabanlı eklenti motoru
  2. # URL: https://wiki.gnome.org/Projects/Libpeas
  3. # Paketçi: milisarge
  4. # Gerekler: python3 intltool python-gobject glade gobject-introspection gnome-common gtk3
  5. # Grup: kütüphane
  6. isim=libpeas
  7. surum=1.22.0
  8. devir=1
  9. kaynak=(http://ftp.gnome.org/pub/gnome/sources/$isim/${surum%.*}/$isim-$surum.tar.xz)
  10. derle() {
  11. cd $isim-$surum
  12. ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
  13. --disable-gtk-doc --disable-static
  14. sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  15. make
  16. make DESTDIR=$PKG install
  17. rm -rf $PKG/usr/share/gtk-doc
  18. find $PKG/ -name *.la -exec rm {} \;
  19. }