talimat 481 B

12345678910111213141516171819202122232425
  1. # Tanım: Allows spanning of file systems across multiple physical disks and partitions.
  2. # URL: http://sourceware.org/lvm2/
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. isim=lvm2
  6. surum=2.02.141
  7. devir=1
  8. kaynak=(ftp://sources.redhat.com/pub/lvm2/LVM2.$surum.tgz)
  9. derle() {
  10. cd LVM2.$surum
  11. ./configure \
  12. --prefix=/usr \
  13. --exec-prefix= \
  14. --with-confdir=/etc \
  15. --mandir=/usr/share/man \
  16. --enable-applib \
  17. --enable-cmdlib \
  18. --enable-pkgconfig \
  19. --enable-udev_sync
  20. make
  21. make DESTDIR=$PKG install
  22. }