diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-04-30 21:45:25 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-04-30 21:45:25 -0300 |
commit | e11d86778598365a4d4881125144138449b1af12 (patch) | |
tree | b7845dd7bd945076ed8c6b67d3b24a5da27bba9d /pcr | |
parent | 34e82db8f4a4801e2580a07ea9bcf616b8ba3e75 (diff) |
Multicast FTP
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/uftp/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pcr/uftp/PKGBUILD b/pcr/uftp/PKGBUILD new file mode 100644 index 000000000..3aef7d164 --- /dev/null +++ b/pcr/uftp/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Markus Jochim <ich@markusjochim.de> +pkgname=uftp +pkgver=4.0 +pkgrel=1 +pkgdesc="Multicast FTP software" +arch=('i686' 'x86_64' 'mips64el') +depends=('openssl') +url="http://www.tcnj.edu/~bush/uftp.html" +license=('GPL') +source=(http://www.tcnj.edu/~bush/downloads/${pkgname}-${pkgver}.tar) +md5sums=('475918421c000b59bfced1a3c21e3035') + +build() { + cd "$srcdir/${pkgname}-${pkgver}/" + make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" +} + +package() { + cd "$srcdir/${pkgname}-${pkgver}/" + make DESTDIR="${pkgdir}" install +} + |