mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
core/keyutils to 1.5.8-1
This commit is contained in:
parent
3d8598006d
commit
8351d2f5b4
1 changed files with 9 additions and 9 deletions
|
@ -6,31 +6,31 @@
|
||||||
# - must build -j1, everything must build in order
|
# - must build -j1, everything must build in order
|
||||||
|
|
||||||
pkgname=keyutils
|
pkgname=keyutils
|
||||||
pkgver=1.5.5
|
pkgver=1.5.8
|
||||||
pkgrel=5
|
pkgrel=1
|
||||||
pkgdesc="Linux Key Management Utilities"
|
pkgdesc="Linux Key Management Utilities"
|
||||||
arch=(i686 x86_64)
|
arch=('i686' 'x86_64')
|
||||||
url="http://www.kernel.org"
|
url="http://www.kernel.org"
|
||||||
license=('GPL2' 'LGPL2.1')
|
license=('GPL2' 'LGPL2.1')
|
||||||
depends=('glibc' 'sh')
|
depends=('glibc' 'sh')
|
||||||
backup=(etc/request-key.conf)
|
backup=('etc/request-key.conf')
|
||||||
source=(http://people.redhat.com/~dhowells/${pkgname}/${pkgname}-${pkgver}.tar.bz2
|
source=(http://people.redhat.com/~dhowells/${pkgname}/${pkgname}-${pkgver}.tar.bz2
|
||||||
request-key.conf.patch)
|
request-kVey.conf.patch)
|
||||||
md5sums=('d759680b2f23c99af95938f5026f25fb'
|
md5sums=('3c7f463039b83833c12a9414c2fcb389'
|
||||||
'89a819a7e4e90936b210c9d5020d296d')
|
'89a819a7e4e90936b210c9d5020d296d')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
cd ${pkgname}-${pkgver}
|
||||||
# fix paths of binaries in /etc/request-key.conf
|
# fix paths of binaries in /etc/request-key.conf
|
||||||
patch -Np0 -i ../request-key.conf.patch
|
patch -Np0 -i ../request-key.conf.patch
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
cd ${pkgname}-${pkgver}
|
||||||
make -j1 CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" SBINDIR='/usr/bin' BINDIR='/usr/bin'
|
make -j1 CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" SBINDIR='/usr/bin' BINDIR='/usr/bin'
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
cd ${pkgname}-${pkgver}
|
||||||
make DESTDIR="${pkgdir}" SBINDIR='/usr/bin' BINDIR='/usr/bin' LIBDIR='/usr/lib' USRLIBDIR='/usr/lib' install
|
make DESTDIR="${pkgdir}" SBINDIR='/usr/bin' BINDIR='/usr/bin' LIBDIR='/usr/lib' USRLIBDIR='/usr/lib' install
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue