summaryrefslogtreecommitdiffstats
path: root/testing/pureftpd/APKBUILD
blob: 8a5110df7bb6efeda8b216d72330d986b026c41a (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
42
43
44
45
46
47
48
49
# Contributor: Douglas Haber <me@douglashaber.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=pure-ftpd
pkgver=1.0.30
pkgrel=1
pkgdesc="Pure FTPD FTP daemon"
url="http://pureftpd.org"
arch="all"
license="GPL"
depends=
depends_dev=
makedepends="$depends_dev"
install=""
subpackages=""
source="http://download.pureftpd.org/pub/pure-ftpd/releases/$pkgname-$pkgver.tar.gz
	pure-ftpd.initd"

_builddir="src/$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 \
		--without-humor \
		--without-unicode \
		--with-minimal \
		--with-throttling  \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
        install -m755 -D ../$pkgname.initd \
                "$pkgdir"/etc/init.d/$pkgname || return 1

}

md5sums="29e2a68e756d09f4aff8f4f76435b020  pure-ftpd-1.0.30.tar.gz
a37d043f3df4595b2d39aa1083705948  pure-ftpd.initd"