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/hypermail/APKBUILD | |
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/hypermail/APKBUILD')
-rw-r--r-- | main/hypermail/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/main/hypermail/APKBUILD b/main/hypermail/APKBUILD new file mode 100644 index 0000000000..6e4f412374 --- /dev/null +++ b/main/hypermail/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +pkgname=hypermail +pkgver=2.2.0 +pkgrel=0 +pkgdesc="Mail Archiver" +url="http://www.hypermail-project.org" +license="GPL" +depends="uclibc pcre lua" +makedepends="pcre-dev bison" +install= +subpackages="" +source="http://www.hypermail-project.org/$pkgname-$pkgver.tar.gz + mdir2mbox.lua" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --with-httpddir=/var/www \ + --with-cgidir=/var/www/cgi-bin + make || return 1 + #does not understand DESTDIR so going to install ourselves + #make DESTDIR="$pkgdir" install + + install -m755 -D archive/rdmsg "$pkgdir"/usr/bin/rdmsg + install -m755 -D archive/msg2archive "$pkgdir"/usr/bin/msgarchive + install -m755 -D src/hypermail "$pkgdir"/usr/bin/hypermail + install -m755 -D "$srcdir"/mdir2mbox.lua "$pkgdir"/usr/bin/mdir2mbox.lua + +} + +md5sums="a064e36780ee41409c8c973f9c69927f hypermail-2.2.0.tar.gz +079b00d4ea667a0efd6fd370b1a4d5d8 mdir2mbox.lua" |