PKGBUILDs/alarm/cryptodev-dkms/PKGBUILD

49 lines
1.3 KiB
Bash
Raw Normal View History

2016-03-29 23:29:18 +00:00
# Maintainer: Oleg Rakhmanov <oleg [at] archlinuxarm [dot] org>
pkgname=cryptodev-dkms
_pkgname=${pkgname%-*}
cryptodev_commit=f2927e313b6a74408d17d152abb21aa59d113b46
2016-03-29 23:29:18 +00:00
2018-12-28 08:30:53 +00:00
pkgver=1.10
pkgrel=4
2016-03-29 23:29:18 +00:00
pkgdesc="Cryptodev module to take advantage of hardware crypto engines in userspace"
arch=('arm' 'armv6h' 'armv7h' 'aarch64')
url="https://github.com/cryptodev-linux/cryptodev-linux"
license=('GPL2')
depends=('dkms')
install=${pkgname}.install
provides=('cryptodev_friendly')
source=("cryptodev-${cryptodev_commit}.tar.gz::https://github.com/cryptodev-linux/cryptodev-linux/archive/${cryptodev_commit}.tar.gz"
2018-05-19 19:20:47 +00:00
'dkms.conf')
sha256sums=('d67a4a306a0d449298af2448f8f324bf79ec9d41411eef0c92ed764b6d505eee'
2018-05-19 19:20:47 +00:00
'c42865a4a800a4927619ac5ed742be59a6d960af8295727af909e9ea9587f3da')
2017-09-19 04:39:52 +00:00
2016-03-29 23:29:18 +00:00
package() {
cd "${srcdir}"
local install_dir="${pkgdir}/usr/src/${_pkgname}-${pkgver}"
# Copy dkms.conf
install -Dm644 dkms.conf "${install_dir}/dkms.conf"
# Set name and version
sed -e "s/@_PKGNAME@/${_pkgname}/" \
-e "s/@PKGVER@/${pkgver}/" \
-i "${install_dir}/dkms.conf"
# Copy sources
cd "cryptodev-linux-${cryptodev_commit}"
for d in $(find . -type d)
do
install -dm755 "${install_dir}/$d"
done
for f in $(find . -type f)
do
install -m644 "$f" "${install_dir}/$f"
done
}