talimat 492 B

123456789101112131415161718192021222324
  1. # Description: Allows spanning of file systems across multiple physical disks and partitions.
  2. # URL: http://sourceware.org/lvm2/
  3. # Packager: milisarge@gmail.com
  4. name=lvm2
  5. version=2.02.141
  6. release=1
  7. source=(ftp://sources.redhat.com/pub/lvm2/LVM2.$version.tgz)
  8. build() {
  9. cd LVM2.$version
  10. ./configure \
  11. --prefix=/usr \
  12. --exec-prefix= \
  13. --with-confdir=/etc \
  14. --mandir=/usr/share/man \
  15. --enable-applib \
  16. --enable-cmdlib \
  17. --enable-pkgconfig \
  18. --enable-udev_sync
  19. make
  20. make DESTDIR=$PKG install
  21. }