Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2787 - (show annotations)
Sat Jun 23 17:26:22 2012 UTC (10 months, 4 weeks ago) by acrux
File size: 747 byte(s)
lvm2: updated to 2.02.96
1 # Description: Userspace toolset for logical volume management
2 # URL: http://sourceware.org/lvm2/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: libdevmapper
5
6 name=lvm2
7 version=2.02.96
8 release=1
9 source=(ftp://sources.redhat.com/pub/lvm2/releases/LVM2.$version.tgz)
10
11 build() {
12 cd LVM2.$version
13
14 ./configure --prefix=/usr \
15 --exec-prefix= \
16 --datarootdir=/usr \
17 --with-udev-prefix= \
18 --disable-readline \
19 --enable-pkgconfig \
20 --enable-static_link \
21 --enable-udev_sync \
22 --enable-udev_rules \
23 --with-{user,group}=root
24
25 make
26 make DESTDIR=$PKG install_lvm2
27
28 install -d -m 0700 $PKG/etc/lvm/{archive,backup}
29 install -d -m 1777 $PKG/var/lock
30 install -d -m 0700 $PKG/var/lock/lvm
31 }