From 8ca2543c17819e754d2ebf467acfc65a636d25f2 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 11 Jun 2011 22:33:32 -0400 Subject: add a PKGBUILD for easier testing from the repo Inspired by the PKGBUILD included with the initscripts repo Signed-off-by: Dave Reisner --- PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 PKGBUILD (limited to 'PKGBUILD') diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..58716c2 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +pkgname=mkinitcpio-git +IFS='-' read pkgver pkgrel _ < <(git describe) +pkgdesc="Modular initramfs image creation utility" +arch=(any) +url="http://www.archlinux.org/" +license=('GPL') +conflicts=('mkinitcpio') +provides=('mkinitcpio=9999') +depends=('mkinitcpio-busybox>=1.16.1-2' 'module-init-tools' 'util-linux>=2.19' 'libarchive' 'coreutils' + 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2009.01-2' 'udev>=168' 'file' 'gzip') +optdepends=('xz: Use lzma or xz compression for the initramfs image' + 'bzip2: Use bzip2 compression for the initramfs image' + 'lzop: Use lzo compression for the initramfs image' + 'mkinitcpio-nfs-utils: Support for root filesystem on NFS') +replaces=('mkinitrd' 'mkinitramfs' 'klibc' 'klibc-extras' 'klibc-kbd' + 'klibc-module-init-tools' 'klibc-udev') +backup=(etc/mkinitcpio.conf) + +build() { + make -C .. +} + +package() { + make -C .. DESTDIR="$pkgdir" install +} -- cgit v1.2.3-24-g4f1b