mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
550 B
Bash
22 lines
550 B
Bash
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
|
# Maintainer : Tobias Powalowski <tpowa@archlinux.org>
|
|
# arm Maintainer: Philipp Scholl <pscholl@bawue.de>
|
|
|
|
pkgname=gen-init-cpio
|
|
pkgver=2.6.17
|
|
pkgrel=3
|
|
pkgdesc="Program to compress initramfs images"
|
|
arch=(arm)
|
|
license=('custom:none')
|
|
groups=('base')
|
|
url="http://www.kernel.org/"
|
|
depends=('glibc')
|
|
source=(Makefile gen_init_cpio.c)
|
|
md5sums=('8e3a142a522d65121c3bead41013be98' 'fe53a05f5fcfca9e4dd8d67d29190f6e')
|
|
|
|
build()
|
|
{
|
|
cd $startdir/src/
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|