mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 15:12:02 +01:00
56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=cryptsetup1
|
|
pkgver=1.7.5
|
|
pkgrel=4
|
|
pkgdesc="Userspace setup tool for transparent encryption of block devices using the Linux 2.6 cryptoapi"
|
|
url="https://gitlab.com/cryptsetup/cryptsetup"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
depends=""
|
|
conflicts="cryptsetup"
|
|
replaces="cryptsetup"
|
|
makedepends_build=""
|
|
makedepends_host="lvm2-dev openssl-dev popt-dev util-linux-dev"
|
|
makedepends="$makedepends_build $makedepends_host"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs"
|
|
source="https://www.kernel.org/pub/linux/utils/cryptsetup/v${pkgver%.*}/cryptsetup-$pkgver.tar.gz
|
|
flush-stdout.patch
|
|
libressl-2.7.patch
|
|
"
|
|
builddir="$srcdir"/cryptsetup-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--libdir=/lib \
|
|
--sbindir=/sbin \
|
|
--disable-static \
|
|
--with-crypto_backend=openssl
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR=$pkgdir install
|
|
|
|
mkdir -p "$pkgdir"/usr/lib
|
|
mv "$pkgdir"/lib/pkgconfig "$pkgdir"/usr/lib/
|
|
|
|
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/
|
|
install -m644 README TODO FAQ "$pkgdir"/usr/share/doc/$pkgname/
|
|
}
|
|
|
|
libs() {
|
|
pkgdesc="Cryptsetup shared library"
|
|
mkdir -p "$subpkgdir"
|
|
mv "$pkgdir"/lib "$subpkgdir"/
|
|
}
|
|
|
|
sha512sums="be4cf2815390f415edc3e1013222c9fe735b83c37278484e680cf7e0f6bdb850242bf057020d4c0d9f0e66106dbbc5b57abe34b351c99951d4aebb809e3c0473 cryptsetup-1.7.5.tar.gz
|
|
301e3e3da5a899e0a6f01f44fbf37bb6a3f5b6a4fb41243bae6d3b7aea747276e784626cd1b19721cc264652c10ae8c560c4d20094e33bb82fb2fae0160682c0 flush-stdout.patch
|
|
04686ed9407c69a68f608a1d8fb1e49e99476eea9adab789a3d78578ec01d352337529165abd5615416b1173ef0357dd35f977f8335ecb2f5610b8be998b7314 libressl-2.7.patch"
|