mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 05:57:14 +08:00
28 lines
684 B
Bash
28 lines
684 B
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>
|
|
|
|
pkgname=bluez-hcidump
|
|
pkgver=2.1
|
|
pkgrel=1
|
|
pkgdesc="Bluetooth HCI package analyzer"
|
|
url="http://www.bluez.org/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
depends=('glibc' 'bluez')
|
|
source=("http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('b160f0672276398344eebe9df1b37a2c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|