mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
|
# Maintainer: schuay <jakob.gruber@gmail.com>
|
||
|
# Previous Maintainer: TDY <tdy@gmx.com>
|
||
|
# Contributor: Massimiliano Torromeo <Massimiliano.Torromeo AT gmail DOT com>
|
||
|
|
||
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
# - patch to fix qreal usage on ARM
|
||
|
|
||
|
pkgname=openssh-askpass
|
||
|
pkgver=2.0.0
|
||
|
pkgrel=2
|
||
|
pkgdesc='A plasma-like passphrase dialog for ssh'
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='http://www.phenix.bnl.gov/WWW/publish/hpereira/software/index.php?page=package&package_list=software_list_qt4&package=openssh-askpass&full=1'
|
||
|
license=('GPL')
|
||
|
depends=('openssh' 'qt4')
|
||
|
makedepends=('cmake')
|
||
|
provides=('x11-ssh-askpass')
|
||
|
conflicts=('x11-ssh-askpass')
|
||
|
source=("http://www.phenix.bnl.gov/WWW/publish/hpereira/software/tgz/$pkgname-$pkgver.tar.gz"
|
||
|
"$pkgname.sh"
|
||
|
'arm.patch')
|
||
|
md5sums=('99b31e5bc2c12f91cc88869661ad92be'
|
||
|
'baec3f0499b851aca6705968fa9e0df7'
|
||
|
'c6c1f8d316bf526d1d7d959aafb4d020')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
patch -p1 -i "${srcdir}"/arm.patch
|
||
|
|
||
|
mkdir -p build
|
||
|
cd build
|
||
|
|
||
|
cmake -DCMAKE_INSTALL_PREFIX="/usr" ..
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-$pkgver/build"
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/etc/profile.d/$pkgname.sh"
|
||
|
}
|