diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /core/gen-init-cpio/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'core/gen-init-cpio/PKGBUILD')
-rw-r--r-- | core/gen-init-cpio/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/core/gen-init-cpio/PKGBUILD b/core/gen-init-cpio/PKGBUILD new file mode 100644 index 000000000..5551ae1b3 --- /dev/null +++ b/core/gen-init-cpio/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 102143 2010-12-06 09:37:46Z allan $ +# Maintainer : Tobias Powalowski <tpowa@archlinux.org> + +pkgname=gen-init-cpio +pkgver=2.6.36 +pkgrel=1 +pkgdesc="Program to compress initramfs images" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://www.kernel.org/" +depends=('glibc') +source=(Makefile + gen_init_cpio.c) +md5sums=('8e3a142a522d65121c3bead41013be98' + 'c0c0844d9e2e2c1bfb948201dc7b4c97') + +build() +{ + cd $srcdir + make +} + +package() { + cd $srcdir + make DESTDIR=$pkgdir install +} |