You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
693 B
39 lines
693 B
![]()
15 years ago
|
pkgname=dracut-git
|
||
![]()
9 years ago
|
pkgver=1
|
||
|
pkgrel=1
|
||
![]()
15 years ago
|
pkgdesc="Initramfs generation utility"
|
||
|
arch=('i686' 'x86_64')
|
||
![]()
14 years ago
|
url="https://dracut.wiki.kernel.org/"
|
||
![]()
15 years ago
|
license=('GPL')
|
||
|
conflicts=('dracut' 'mkinitcpio')
|
||
|
provides=('dracut=9999' 'mkinitcpio=9999')
|
||
|
depends=('bash')
|
||
|
optdepends=('cryptsetup' 'lvm2')
|
||
|
makedepends=('libxslt')
|
||
![]()
14 years ago
|
backup=(etc/dracut.conf)
|
||
![]()
15 years ago
|
source=()
|
||
|
md5sums=()
|
||
|
|
||
![]()
9 years ago
|
# out of tree builds disallowed for this PKGFILE
|
||
|
BUILDDIR="${PWD}"
|
||
|
PKGDEST="${PWD}"
|
||
|
SRCDEST=""
|
||
|
SRCPKGDEST=""
|
||
|
LOGDEST=""
|
||
|
|
||
![]()
9 years ago
|
pkgver() {
|
||
|
cd ..
|
||
|
desc="$(git describe)"
|
||
|
printf "%s.%s.%s" ${desc//-/ }
|
||
|
}
|
||
|
|
||
![]()
15 years ago
|
build() {
|
||
|
cd ..
|
||
|
make sysconfdir=/etc || return 1
|
||
![]()
9 years ago
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ..
|
||
![]()
15 years ago
|
make DESTDIR="${pkgdir}" sysconfdir=/etc install || return 1
|
||
![]()
14 years ago
|
}
|