mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:54:40 +08:00
31 lines
769 B
Bash
31 lines
769 B
Bash
# $Id$
|
|
# Maintainer: Christian Hesse <mail@eworm.de>
|
|
# Contributor: Andreas Bosch <admin@progandy.de>
|
|
|
|
pkgname=iucode-tool
|
|
pkgver=2.3.1
|
|
pkgrel=1
|
|
pkgdesc='Tool to manipulate Intel® IA-32/X86-64 microcode bundles'
|
|
arch=('x86_64')
|
|
url='https://gitlab.com/iucode-tool/iucode-tool/wikis/home'
|
|
license=('GPL')
|
|
validpgpkeys=('C467A717507BBAFED3C160920BD9E81139CB4807') # Henrique de Moraes Holschuh <hmh@hmh.eng.br>
|
|
source=("https://gitlab.com/iucode-tool/releases/raw/master/${pkgname}_${pkgver}.tar.xz"{,.asc})
|
|
sha256sums=('12b88efa4d0d95af08db05a50b3dcb217c0eb2bfc67b483779e33d498ddb2f95'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|