21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
# Description: Linux net sürücüsü tanılama ve ayarlama aracı
|
||
# URL: https://www.kernel.org/pub/software/network/ethtool/
|
||
# Packager: milisarge
|
||
# Depends on:
|
||
|
||
name=ethtool
|
||
version=4.6
|
||
release=1
|
||
source=(https://www.kernel.org/pub/software/network/$name/$name-$version.tar.xz)
|
||
|
||
build() {
|
||
cd $name-$version
|
||
|
||
./configure --prefix=/usr \
|
||
--mandir=/usr/man
|
||
|
||
make
|
||
make check
|
||
make DESTDIR=$PKG install
|
||
}
|