opt/lvm2/Pkgfile

30 lines
750 B
Plaintext
Raw Normal View History

2009-06-27 16:22:14 +02:00
# Description: Userspace toolset for logical volume management
# URL: http://sourceware.org/lvm2/
# Maintainer: Juergen Daubert, jue at crux dot nu
2009-07-27 10:19:38 +02:00
# Depends on: libdevmapper
2009-06-27 16:22:14 +02:00
name=lvm2
2010-03-11 17:37:22 +01:00
version=2.02.62
2009-08-07 08:14:32 +02:00
release=1
2009-06-27 16:22:14 +02:00
source=(ftp://sources.redhat.com/pub/lvm2/LVM2.$version.tgz)
build() {
cd LVM2.$version
./configure --prefix=/usr \
2009-07-27 10:19:38 +02:00
--exec_prefix= \
2009-06-27 16:22:14 +02:00
--mandir=/usr/man \
--disable-readline \
--enable-static_link
2009-11-04 18:32:39 +01:00
make
2009-06-27 16:22:14 +02:00
make DESTDIR=$PKG install
2009-07-27 10:19:38 +02:00
rm -r $PKG/{lib,usr/include}
rm $PKG/{sbin/dmsetup*,usr/man/man8/dmsetup.8}
2009-07-27 10:19:38 +02:00
2009-06-27 16:22:14 +02:00
install -d -m 0700 $PKG/etc/lvm/{archive,backup}
install -d -m 1777 $PKG/var/lock
install -d -m 0700 $PKG/var/lock/lvm
}