opt/libdevmapper/Pkgfile

27 lines
594 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Device Mapper for LVM
# URL: http://sources.redhat.com/dm/
# Maintainer: Simon Glo<6C>ner, viper at hometux dot de
2007-01-17 21:11:51 +01:00
# Packager: Mark Rosenstand, mark at borkware dot net
2006-02-23 16:26:10 +01:00
name=libdevmapper
2009-01-04 22:23:13 +01:00
version=1.02.29
release=1
2009-01-04 22:23:13 +01:00
source=(ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.43.tgz)
2006-02-23 16:26:10 +01:00
build() {
2009-01-04 22:23:13 +01:00
cd LVM2.2.02.43
2006-02-23 16:26:10 +01:00
./configure \
--prefix=/usr \
--libdir=/lib \
--mandir=/usr/man \
2007-09-28 15:13:59 +02:00
--sbindir=/sbin \
2007-01-17 21:11:51 +01:00
--enable-pkgconfig \
2006-02-23 16:26:10 +01:00
--disable-nls \
2007-01-17 21:11:51 +01:00
--with-optimisation="$CFLAGS"
2009-01-04 22:23:13 +01:00
make device-mapper
make DESTDIR=$PKG install_device-mapper
2007-01-17 21:11:51 +01:00
find $PKG -type f -exec chmod u+w {} \;
2006-02-23 16:26:10 +01:00
}