talimat 665 B

1234567891011121314151617181920212223242526
  1. # Tanım: Python modülü, inotify ile Linux platformlarındaki dosya sistemleri olaylarını izlemek için kullanılır.
  2. # URL: http://github.com/seb-m/pyinotify
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: python
  5. # Grup: kütüphane
  6. isim=python-pyinotify
  7. surum=0.9.6
  8. devir=1
  9. kaynak=(https://github.com/seb-m/pyinotify/archive/$surum.tar.gz::$isim-$surum.tar.gz)
  10. derle() {
  11. cd $SRC/pyinotify-$surum
  12. python setup.py build
  13. sed \
  14. -e 's_#!/usr/bin/env python_&2_' \
  15. -i python2/pyinotify.py
  16. python setup.py install --root=$PKG -O1
  17. install -d $PKG/usr/share/licenses/python2-pyinotify
  18. install -m644 COPYING \
  19. $PKG/usr/share/licenses/python2-pyinotify
  20. }