talimat 618 B

123456789101112131415161718192021222324
  1. # Description: MATE için dosya yöneticisi (GTK2 versiyon)
  2. # URL: http://matsusoft.com.ar/projects/mate
  3. # Packager: yasarciv
  4. # Depends on: exempi mate-desktop pango gtk2 libexif libxml2 libunique1 desktop-file-utils
  5. name=caja
  6. version=1.16.1
  7. release=1
  8. source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
  9. build() {
  10. cd $name-$version
  11. ./configure \
  12. --prefix=/usr \
  13. --libexecdir=/usr/lib/${name} \
  14. --with-gtk=2.0 \
  15. --enable-unique \
  16. --enable-introspection \
  17. --disable-static \
  18. --disable-update-mimedb
  19. make
  20. make DESTDIR=$PKG install
  21. }