mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
683 B
Bash
25 lines
683 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Eric Belanger <eric@archlinux.org>
|
||
|
# Contributor : mutlu_inek <mutlu_inek@yahoo.de>
|
||
|
|
||
|
pkgname=kftpgrabber
|
||
|
pkgver=0.8.1
|
||
|
pkgrel=2
|
||
|
pkgdesc="A graphical FTP client for KDE"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.kftp.org/"
|
||
|
license=('GPL')
|
||
|
depends=('kdelibs3')
|
||
|
options=('libtool')
|
||
|
source=(http://www.kftp.org/uploads/files/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('56610fd3e2e7f092b7d8eed10d3e5d36')
|
||
|
sha1sums=('da5c6100a6e3129bc1f845c35475cd48b42afc8a')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
. /etc/profile.d/kde3.sh
|
||
|
./configure --prefix=/opt/kde --without-arts
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|