summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Neumann2021-02-01 18:18:48 +0100
committerRichard Neumann2021-02-01 18:18:48 +0100
commite3c7cd29f07cc7657c26f5b5d5b56f0f42f5a24d (patch)
treed2f395f141501d768635f6f85e511a367f03d03a
parentd85107390e63e0ab25837778e9c5432df6e30e14 (diff)
downloadaur-e3c7cd29f07cc7657c26f5b5d5b56f0f42f5a24d.tar.gz
Updated to 4.0.0.
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD9
2 files changed, 6 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e6ec4d54df2d..af6b262f550e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,15 @@
pkgbase = amd-sfh-hid-dkms
pkgdesc = Refactored HID driver modules for the AMD Sensor Fusion Hub (DKMS)
- pkgver = 3.2.4
+ pkgver = 4.0.0
pkgrel = 1
url = https://github.com/conqp/amd-sfh-hid-dkms
arch = i686
arch = x86_64
license = GPL2
depends = dkms
- source = https://github.com/conqp/amd-sfh-hid-dkms/archive/3.2.4.tar.gz
+ source = https://github.com/conqp/amd-sfh-hid-dkms/archive/4.0.0.tar.gz
source = dkms.conf
- sha256sums = 85459e66c4dca852ab08b187683f53f7ae35ba10452e3cdf000271bc7d90898f
+ sha256sums = 03b31cff11570ddd90ce935ef7d7d0e62a4e51aa1af9efa2ec70f03e09e78969
sha256sums = 6cdb0eae3f2aff4564f653d8b7117112918631a170d154cc2fc2998ad8787615
pkgname = amd-sfh-hid-dkms
diff --git a/PKGBUILD b/PKGBUILD
index ab4de78f9698..96ae26ab715b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgbase=amd-sfh-hid
pkgname="${_pkgbase}-dkms"
-pkgver=3.2.4
+pkgver=4.0.0
pkgrel=1
pkgdesc="Refactored HID driver modules for the AMD Sensor Fusion Hub (DKMS)"
arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@ license=('GPL2')
depends=('dkms')
source=("${url}/archive/${pkgver}.tar.gz"
'dkms.conf')
-sha256sums=('85459e66c4dca852ab08b187683f53f7ae35ba10452e3cdf000271bc7d90898f'
+sha256sums=('03b31cff11570ddd90ce935ef7d7d0e62a4e51aa1af9efa2ec70f03e09e78969'
'6cdb0eae3f2aff4564f653d8b7117112918631a170d154cc2fc2998ad8787615')
package() {
@@ -19,10 +19,7 @@ package() {
local DEST="${pkgdir}/usr/src/${_pkgbase}-${pkgver}"
install -dm 755 "${DEST}"
-
- for file in "${SRC}"/*.[hc] "${SRC}/Makefile"; do
- install -m 644 "${file}" "${DEST}"
- done
+ cp -a "${SRC}"/* "${DEST}/"
sed -e "s/@PKGNAME@/${_pkgbase}/" \
-e "s/@PKGVER@/${pkgver}/" \