diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-11-18 17:13:20 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-11-18 17:13:20 -0300 |
commit | 7eff80609dcc365658c94f899d4a3a298e8fb5dd (patch) | |
tree | c65916a41861ebbc3875f664b2ff543744483956 /social | |
parent | 57c4a12d7c00bb82275af154cbcdbb7ec871c57c (diff) |
Encrypted UDP based FTP
.service files are in the way
Diffstat (limited to 'social')
-rw-r--r-- | social/uftp/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/social/uftp/PKGBUILD b/social/uftp/PKGBUILD new file mode 100644 index 000000000..534b63339 --- /dev/null +++ b/social/uftp/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Markus Jochim <ich@markusjochim.de> +# Maintainer (Parabola): fauno <fauno@parabola.nu> +pkgname=uftp +pkgver=3.7.1 +pkgrel=1 +pkgdesc="Multicast FTP software" +arch=(i686 x86_64 mips64el) +url="http://www.tcnj.edu/~bush/uftp.html" +license=('GPL3') +source=(http://www.tcnj.edu/~bush/downloads/uftp-${pkgver}.tar) +md5sums=('0d3aa7d3e57251e8abf34027afa1e321') + +build() { + cd "$srcdir/uftp-${pkgver}/" + make CFLAGS="$CFLAGS" +} + +package() { + cd "$srcdir/uftp-${pkgver}/" + make DESTDIR="${pkgdir}" install +} + |