mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 13:57:17 +08:00
30 lines
904 B
Bash
30 lines
904 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=qftp
|
||
|
pkgver=1.3.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A QT client for FTP file transfer"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.phenix.bnl.gov/WWW/publish/hpereira/software/index.php?page=package&package_list=software_list_qt4&package=qftp-qt4&full=1"
|
||
|
license=('GPL')
|
||
|
depends=('qt')
|
||
|
source=(http://www.phenix.bnl.gov/WWW/publish/hpereira/software/tgz/$pkgname-qt4_$pkgver.tar.gz)
|
||
|
md5sums=('08ac23ac1e4153ef4ac45b9f4b69dcf2')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-qt4_$pkgver"
|
||
|
./autogen.sh --prefix=/usr --with-qt-dir=/usr
|
||
|
make || return 1
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-qt4_$pkgver"
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|