diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
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 +} |