about summary refs log blame commit diff stats
path: root/core/ports/dracut/Pkgfile
blob: e1872148e2908823d75c3b614fec53d5c5a95e10 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                    
                                                   
                                                   


           
         
                                                                               
                   







                             


                                                
                                   
                                       

 
# Description:  dracut is an event driven initramfs infrastructure. 
# URL:          https://dracut.wiki.kernel.org/
# Maintainer:   Silvino Silva, silvino at bk dot ru
# Depends on:   cryptsetup nbd nfs-utils lvm2 mdadm

name=dracut
version=044
release=2
source=(https://www.kernel.org/pub/linux/utils/boot/$name/$name-$version.tar.xz
dracut.conf README)

build() {
    cd $name-$version

    ./configure --prefix=/usr

    make
    make DESTDIR=$PKG install

    install -m 0644 -D $SRC/dracut.conf $PKG/etc

    mv $PKG/usr/share/man $PKG/usr/
    find $PKG -name "README" | xargs rm

}