mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:54:37 +08:00
38 lines
988 B
Bash
38 lines
988 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=usbutils
|
|
pkgver=008
|
|
pkgrel=1
|
|
pkgdesc="USB Device Utilities"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
groups=('base')
|
|
depends=('libusb' 'hwids')
|
|
optdepends=('python2: for lsusb.py usage'
|
|
'coreutils: for lsusb.py usage')
|
|
url="http://linux-usb.sourceforge.net/"
|
|
source=("http://www.kernel.org/pub/linux/utils/usb/usbutils/${pkgname}-${pkgver}.tar.xz"
|
|
fix-python2.patch)
|
|
sha1sums=('233dee6cd6829476be778554984045663b568b18'
|
|
'4d674f1ca826169c82bf2e433a4d0fe46c55ea27')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
# patch lsusb.py to use correct usb.ids file and python2 interpreter
|
|
patch -Np1 -i $srcdir/fix-python2.patch
|
|
./configure --prefix=/usr --datadir=/usr/share/hwdata --disable-zlib
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
# this is now in the hwids package
|
|
rm -rf $pkgdir/usr/{share/hwdata,sbin}
|
|
}
|
|
|
|
|