linux-surface/pkg/arch/surface-ipts-firmware/PKGBUILD

22 lines
509 B
Bash
Raw Normal View History

2020-01-10 01:13:54 +00:00
# Maintainer: Blaž Hrastnik <blaz@mxxn.io>
pkgname=surface-ipts-firmware
pkgver=1.0.0
pkgrel=1
arch=(any)
pkgdesc="Surface firmware"
url="http://github.com/linux-surface/surface-ipts-firmware"
license=(GPL2)
_srcname=source
_srcbranch='master'
source=(
"$_srcname::git+https://github.com/linux-surface/surface-ipts-firmware.git#branch=$_srcbranch"
)
sha256sums=('SKIP')
package() {
cd ${srcdir}/${_srcname}/
install -d "${pkgdir}/usr/lib/firmware/"
cp -r firmware/* "${pkgdir}/usr/lib/firmware/"
}