blob: d3143da63eacc71ee6df8b16495777bf7537ef65 (
plain)
1 # Description: Tool to manipulate Intel microcode update bundles
2 # URL: https://gitlab.com/iucode-tool/iucode-tool/wikis/home
3 # Maintainer: Pedja, predivan at mts dot rs
4 # Depends on:
5
6 name=iucode-tool
7 version=2.3.1
8 release=1
9 source=(https://gitlab.com/$name/releases/raw/latest/$name"_"$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 ./autogen.sh
14 ./configure --prefix=/usr \
15 --mandir=/usr/share/man
16 make
17 make DESTDIR=$PKG install
18 }
|