talimat 682 B

123456789101112131415161718192021222324252627
  1. # Tanım: Uygulama eşleme çerçevesi
  2. # URL: https://launchpad.net/bamf
  3. # Paketçi: CihanAlkan
  4. # Gerekler: libgtop libwnck3 gobject-introspection python-lxml vala
  5. # Grup: kütüphane
  6. isim=bamf
  7. surum=0.5.3
  8. devir=1
  9. kaynak=(https://launchpad.net/bamf/${surum%.*}/$surum/+download/bamf-$surum.tar.gz)
  10. derle() {
  11. cd $isim-$surum
  12. export PYTHON='/usr/bin/python2'
  13. export CFLAGS="$CFLAGS -Wno-deprecated-declarations"
  14. ./configure \
  15. --prefix='/usr' \
  16. --libexecdir='/usr/lib' \
  17. --localstatedir='/var' \
  18. --sysconfdir='/etc' \
  19. --disable-static \
  20. --disable-webapps
  21. sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  22. make
  23. make DESTDIR=$PKG install
  24. }