mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-25 02:52:16 +08:00
48 lines
1.7 KiB
Bash
48 lines
1.7 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=ndiswrapper
|
|
pkgver=1.56
|
|
pkgrel=16
|
|
|
|
# Find the kernel name inside the chroot
|
|
_kernver=`pacman -Q linux | cut -c7-9 | sed 's/linux //g'`-CHAKRA
|
|
|
|
pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by vendors. For linux-testing."
|
|
license=('GPL')
|
|
arch=(i686 x86_64)
|
|
url="http://ndiswrapper.sourceforge.net"
|
|
install="ndiswrapper.install"
|
|
depends=("ndiswrapper-utils=$pkgver" 'linux>=3.0' 'linux<3.1')
|
|
makedepends=('linux-headers')
|
|
source=(http://downloads.sourceforge.net/sourceforge/ndiswrapper/ndiswrapper-$pkgver.tar.gz
|
|
kernel-2.6.35.patch
|
|
kernel-2.6.36.patch
|
|
kernel-2.6.38.patch)
|
|
build()
|
|
{
|
|
cd $srcdir/ndiswrapper-$pkgver/driver
|
|
patch -Np2 -i $startdir/kernel-2.6.35.patch
|
|
patch -Np2 -i $startdir/kernel-2.6.36.patch
|
|
patch -Np2 -i $startdir/kernel-2.6.38.patch
|
|
make KVERS=$_kernver
|
|
make DESTDIR=$pkgdir KVERS=$_kernver install
|
|
rm $pkgdir/lib/modules/$_kernver/modules.* #wtf?
|
|
|
|
sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install
|
|
# move it to correct kernel directory
|
|
mkdir -p $pkgdir/lib/modules/$_kernver/kernel/drivers/net/wireless/ndiswrapper
|
|
mv $pkgdir/lib/modules/$_kernver/misc/* $pkgdir/lib/modules/$_kernver/kernel/drivers/net/wireless/ndiswrapper/
|
|
rm -r $pkgdir/lib/modules/$_kernver/misc/
|
|
}
|
|
|
|
md5sums=('1431f7ed5f8e92e752d330bbb3aed333'
|
|
'0a03d613b1fd545a75c5dd1a7c2aaec4'
|
|
'cc16ed13449f17e90865df688b180b2c'
|
|
'2499a87276ae0c8ce39bea6ef942d926') |