core/libdevmapper/Pkgfile

30 lines
809 B
Plaintext
Raw Normal View History

2009-07-27 10:21:16 +02:00
# Description: Device mapper userspace library
# URL: http://sourceware.org/lvm2/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libdevmapper
2010-12-23 14:00:28 +01:00
version=1.02.60
release=1
2010-12-23 14:00:28 +01:00
source=(ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.79.tgz
lvm2-static_build.patch)
2009-07-27 10:21:16 +02:00
build() {
2010-12-23 14:00:28 +01:00
cd LVM2.2.02.79
patch -p1 -i $SRC/lvm2-static_build.patch
2009-07-27 10:21:16 +02:00
./configure --prefix=/usr \
--sbindir=/sbin \
2010-05-04 20:36:16 +02:00
--libdir=/lib \
--datarootdir=/usr \
--with-staticdir=/sbin \
--with-usrlibdir=/usr/lib \
2009-07-27 10:21:16 +02:00
--disable-readline \
2009-08-06 20:33:26 +02:00
--enable-pkgconfig \
2010-05-04 20:36:16 +02:00
--enable-static_link \
--with-{user,group}=root
2009-07-27 10:21:16 +02:00
make device-mapper
make DESTDIR=$PKG install_device-mapper
}