cryptsetup: update to 1.6.2.

This commit is contained in:
Juan RP 2013-08-14 06:52:15 +02:00
parent d56cbef810
commit 44b6ea776e
1 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Template file for 'cryptsetup' # Template file for 'cryptsetup'
pkgname=cryptsetup pkgname=cryptsetup
version=1.6.1 version=1.6.2
revision=1 revision=1
build_style=gnu-configure build_style=gnu-configure
configure_args="--enable-pwquality" configure_args="--enable-pwquality"
@ -11,7 +11,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-3" license="GPL-3"
homepage="http://code.google.com/p/cryptsetup" homepage="http://code.google.com/p/cryptsetup"
distfiles="https://cryptsetup.googlecode.com/files/$pkgname-$version.tar.bz2" distfiles="https://cryptsetup.googlecode.com/files/$pkgname-$version.tar.bz2"
checksum=baf36e663c03eb6440482d91c486d61ed47ce5c9268ad04c18ca09082755149c checksum=15723f0198303d4bcb99d480b7a773918e2d319f0348457988c063bdd03e109a
if [ "$CROSS_BUILD" ]; then if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" libtool automake gettext-devel libgcrypt-devel" hostmakedepends+=" libtool automake gettext-devel libgcrypt-devel"
@ -23,7 +23,7 @@ fi
libcryptsetup_package() { libcryptsetup_package() {
short_desc+=" - runtime libraries" short_desc+=" - runtime libraries"
pkg_install() { pkg_install() {
vmove "usr/lib/*.so*" vmove "usr/lib/*.so.*"
} }
} }
@ -33,11 +33,12 @@ cryptsetup-devel_package() {
pkg_install() { pkg_install() {
vmove usr/include vmove usr/include
vmove usr/lib/pkgconfig vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
} }
} }
cryptsetup_package() { cryptsetup_package() {
pkg_install() { pkg_install() {
vmove usr vmove all
} }
} }