mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:27:13 +08:00
28 lines
617 B
Bash
28 lines
617 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakralinux.org
|
|
#
|
|
|
|
pkgname=chakra-hardware-detection
|
|
pkgver=20170928
|
|
pkgrel=1
|
|
branch="master"
|
|
pkgdesc="Hardware detection scripts for Chakra"
|
|
arch=('any')
|
|
url="https://www.chakralinux.org"
|
|
depends=('bc' 'util-linux' 'chd-nvidia' 'chd-nvidia-340xx' 'chd-nvidia-304xx'
|
|
'chd-catalyst' 'dmidecode')
|
|
license=('GPL')
|
|
|
|
_gitname=$pkgname
|
|
_gitsha=820ea19
|
|
source=("$pkgname"::"git://git.chakralinux.org/${_gitname}.git#commit=${_gitsha}")
|
|
md5sums=('SKIP')
|
|
|
|
# create tarball: source PKGBUILD && mksource
|
|
|
|
package(){
|
|
cd "$srcdir/$_gitname/"
|
|
make install DESTDIR="${pkgdir}"
|
|
}
|
|
|