19 lines
464 B
Plaintext
19 lines
464 B
Plaintext
# Description: Tool to manipulate Intel microcode update bundles
|
|
# URL: https://gitlab.com/iucode-tool/iucode-tool/wikis/home
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=iucode-tool
|
|
version=2.3.1
|
|
release=1
|
|
source=(https://gitlab.com/iucode-tool/iucode-tool/-/archive/v$version/iucode-tool-v$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-v$version
|
|
|
|
./autogen.sh
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|