mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
23 lines
483 B
Bash
Executable File
23 lines
483 B
Bash
Executable File
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=chakra-hardware-detection
|
|
pkgver=20120702
|
|
pkgrel=1
|
|
pkgdesc="Hardware detection scripts for Chakra"
|
|
arch=('any')
|
|
url="http://www.chakra-project.org"
|
|
depends=('bc' 'util-linux')
|
|
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`
|
|
}
|