core/libdevmapper/Pkgfile

26 lines
676 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
2009-07-29 10:58:13 +02:00
version=1.02.35
2009-07-27 10:21:16 +02:00
release=1
2009-07-29 10:58:13 +02:00
source=(ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.50.tgz)
2009-07-27 10:21:16 +02:00
build() {
2009-07-29 10:58:13 +02:00
cd LVM2.2.02.50
2009-07-27 10:21:16 +02:00
./configure --prefix=/usr \
--sbindir=/sbin \
--mandir=/usr/man \
--disable-readline \
--enable-pkgconfig
make device-mapper
make DESTDIR=$PKG install_device-mapper
install -d $PKG/lib
mv $PKG/usr/lib/libdevmapper.so.1.02 $PKG/lib
ln -sf ../../lib/libdevmapper.so.1.02 $PKG/usr/lib/libdevmapper.so
}