mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
24 lines
632 B
Bash
24 lines
632 B
Bash
# $Id: PKGBUILD 68748 2010-02-14 10:45:02Z thomas $
|
|
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
|
|
|
pkgname=mkinitcpio-nfs-utils
|
|
pkgver=0.2
|
|
pkgrel=2
|
|
pkgdesc="ipconfig and nfsmount tools for NFS root support in mkinitcpio"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.archlinux.org/"
|
|
license=('GPL2')
|
|
depends=('glibc')
|
|
source=(ftp://ftp.archlinux.org/other/mkinitcpio/${pkgname}-${pkgver}.tar.gz)
|
|
sha256sums=('3f2839f21a420cd732d34e58f84534acdb7fc29f69381dbba3f00e3424201cd3')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|