PKGBUILDs/alarm/cryptodev-dkms/PKGBUILD

47 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%-*}
2017-04-09 16:42:30 +00:00
cryptodev_commit=6818263667ca488f9b1c86e36ea624c4ea1c309f
2016-03-29 23:29:18 +00:00
pkgver=1.8
2017-04-09 16:42:30 +00:00
pkgrel=7
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"
'dkms.conf')
2017-04-09 16:42:30 +00:00
sha256sums=('85f7545a3eba9749e253136cea47121e189974e98c8a4eddfbe076683bf354fb'
'c42865a4a800a4927619ac5ed742be59a6d960af8295727af909e9ea9587f3da')
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
}