libdevmapper: new core port

This commit is contained in:
Juergen Daubert 2009-07-27 10:21:16 +02:00
parent 63a7ccb085
commit d43f9c7760
3 changed files with 40 additions and 0 deletions

14
libdevmapper/.footprint Normal file
View File

@ -0,0 +1,14 @@
drwxr-xr-x root/root lib/
-r-xr-xr-x root/root lib/libdevmapper.so.1.02
drwxr-xr-x root/root sbin/
-r-xr-xr-x root/root sbin/dmsetup
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-r--r--r-- root/root usr/include/libdevmapper.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libdevmapper.so -> ../../lib/libdevmapper.so.1.02
drwxr-xr-x root/root usr/lib/pkgconfig/
-r--r--r-- root/root usr/lib/pkgconfig/devmapper.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-r--r--r-- root/root usr/man/man8/dmsetup.8.gz

1
libdevmapper/.md5sum Normal file
View File

@ -0,0 +1 @@
ae49c161e7533c8e33b669c80154bd46 LVM2.2.02.49.tgz

25
libdevmapper/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: Device mapper userspace library
# URL: http://sourceware.org/lvm2/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libdevmapper
version=1.02.34
release=1
source=(ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.49.tgz)
build() {
cd LVM2.2.02.49
./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
}