mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
4cc578e736
catalystpxp-utils: rename the new way (experimental) chakra-hwd: adopt to catalyst-utils
27 lines
672 B
Bash
Executable File
27 lines
672 B
Bash
Executable File
#
|
|
# 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=chakra-hardware-detection
|
|
pkgver=20110804
|
|
pkgrel=1
|
|
pkgdesc="Hardware detection scripts for Chakra"
|
|
arch=('any')
|
|
url="http://www.chakra-project.org"
|
|
depends=('bc' 'util-linux-ng')
|
|
license=('GPL')
|
|
|
|
build() {
|
|
cp -rf ${startdir}/etc ${startdir}/pkg
|
|
cp -rf ${startdir}/opt ${startdir}/pkg
|
|
|
|
#remove nasty .svn folders
|
|
cd ${startdir}/pkg
|
|
rm -rfv `find . -type d -name .svn`
|
|
}
|