mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 08:42:11 +01:00
48 lines
1.0 KiB
Plaintext
48 lines
1.0 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=wput
|
|
pkgver=0.6.2
|
|
pkgrel=0
|
|
pkgdesc="A command line tool to upload files to FTP site"
|
|
url="http://wput.sourceforge.net/"
|
|
arch=""
|
|
license="GPL"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="gnutls-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tgz
|
|
$pkgname-destdir.patch"
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--disable-g-switch \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="a14c4c13d91d04d6119bdc977e8a8bdf wput-0.6.2.tgz
|
|
a15127342ed24051108d945e2124f323 wput-destdir.patch"
|