# Maintainer: Natanael Copa pkgname=mkinitfs pkgver=2.2.0 pkgrel=0 pkgdesc="Tool to generate initramfs images for Alpine" url=http://git.alpinelinux.org/cgit/mkinitfs depends="busybox apk-tools>=2.0" triggers="$pkgname.trigger:/usr/share/kernel/*" source="http://git.alpinelinux.org/cgit/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2 eglibc.patch " arch="x86 x86_64" license="GPL-2" prepare() { cd "$srcdir"/$pkgname-$pkgver # If we are using eglibc/glibc we need to include eglibc libs # instead of uclibc libs. case "$CHOST" in *-gnu) patch -p1 -i "$srcdir"/eglibc.patch || return 1 ;; esac } build() { cd "$srcdir"/$pkgname-$pkgver make || return 1 } package() { cd "$srcdir"/$pkgname-$pkgver make install DESTDIR="$pkgdir" || return 1 } md5sums="b3abed1ee80ae69947350b795c7211e5 mkinitfs-2.2.0.tar.bz2 e59c2f7de496fe430b07e32fd812ebe0 eglibc.patch"