diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/logrotate | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/logrotate')
-rw-r--r-- | main/logrotate/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/logrotate/APKBUILD b/main/logrotate/APKBUILD new file mode 100644 index 0000000000..e29b27e1ea --- /dev/null +++ b/main/logrotate/APKBUILD @@ -0,0 +1,23 @@ +# Contributor: Carlo Landmeter <clandmeter@gmail.com> +pkgname=logrotate +pkgver=3.7.8 +pkgrel=0 +pkgdesc="Tool to rotate logfiles" +url="https://fedorahosted.org/logrotate/" +license="GPL" +depends="uclibc popt" +makedepends="popt-dev wget" +subpackages="$pkgname-doc" +source="https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.7.8.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + make || return 1 + install -Dm755 logrotate "$pkgdir"/usr/sbin/logrotate + install -Dm644 logrotate.8 "$pkgdir"/usr/share/man/man8/logrotate.8 + install -Dm644 examples/logrotate-default "$pkgdir"/etc/logrotate.conf + install -Dm644 examples/logrotate.cron "$pkgdir"/etc/logrotate.cron +} + +md5sums="b3589bea6d8d5afc8a84134fddaae973 logrotate-3.7.8.tar.gz" |