blob: 873765034ffa430a632d3ae9d800ebcaa0b39c18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Bakasura <bakasura@protonmail.ch>
pkgname=cbftp-svn
pkgver=r1277
pkgrel=3
pkgdesc='an advanced multi-purpose FTP/FXP client that focuses on efficient large-scale data spreading, while also supporting most regular FTP/FXP use cases in a modern way. It runs in a terminal and provides a semi-graphical user interface through ncurses.'
arch=('x86_64')
url='https://cbftp.glftpd.io'
depends=('openssl' 'ncurses')
makedepends=('subversion' 'gcc')
optdepends=()
provides=('cbftp' 'cbftp-svn')
conflicts=('cbftp')
replaces=('cbftp')
license=('MIT')
source=("$pkgname::svn+https://cbftp.glftpd.io/svn/cbftp/")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
local ver="$(svnversion)"
printf "r%s" "${ver//[[:alpha:]]}"
}
build() {
cd "$pkgname"
unset OPTFLAGS
unset CXXFLAGS
unset CFLAGS
unset LINKFLAGS
make -j
}
prepare() {
cd "$pkgname"
}
package() {
cd "$pkgname"
install -D -m775 bin/* -t "${pkgdir}/usr/bin"
}
|