mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 06:37:13 +08:00
20 lines
557 B
Bash
20 lines
557 B
Bash
|
# $Id: PKGBUILD 77636 2010-04-16 19:35:15Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=pm-quirks
|
||
|
_date=20100316
|
||
|
pkgver=0.${_date}
|
||
|
pkgrel=1
|
||
|
pkgdesc="Quirks data for pm-utils"
|
||
|
arch=(any)
|
||
|
license=('GPL')
|
||
|
url="http://pm-utils.freedesktop.org/wiki/"
|
||
|
source=(http://pm-utils.freedesktop.org/releases/${pkgname}-${_date}.tar.gz)
|
||
|
md5sums=('9e960d066959b88727e9259a0f04161f')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}"
|
||
|
install -m755 -d "${pkgdir}/usr/lib/pm-utils/video-quirks"
|
||
|
install -m644 *.quirkdb "${pkgdir}/usr/lib/pm-utils/video-quirks/" || return 1
|
||
|
}
|