aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorMichael Mason <ms13sp@gmail.com>2009-03-10 17:57:00 +0000
committerMichael Mason <ms13sp@gmail.com>2009-03-10 17:57:00 +0000
commit5df35600aac78efc41440e29e4f6de2dbc8d6f7a (patch)
tree6516db79cd1e667f2120257d2247c6114dd45703 /testing
parentc81113f7fa7d2e432e7cedca8e559b5b4e1967f6 (diff)
downloadaports-5df35600aac78efc41440e29e4f6de2dbc8d6f7a.tar.bz2
aports-5df35600aac78efc41440e29e4f6de2dbc8d6f7a.tar.xz
testing/hypermail Changed to use install instead of just cp for the binaries
Diffstat (limited to 'testing')
-rw-r--r--testing/hypermail/APKBUILD15
1 files changed, 7 insertions, 8 deletions
diff --git a/testing/hypermail/APKBUILD b/testing/hypermail/APKBUILD
index 17bf0787fc..ea4b9b24d5 100644
--- a/testing/hypermail/APKBUILD
+++ b/testing/hypermail/APKBUILD
@@ -23,16 +23,15 @@ build() {
make || return 1
#does not understand DESTDIR so going to install ourselves
#make DESTDIR="$pkgdir" install
- mkdir -p $pkgdir/usr/bin
- mkdir -p $pkgdir/var/www/cgi-bin
- mkdir -p $pkgdir/var/www/htdocs/hypermail
-
- cp archive/rdmsg $pkgdir/usr/bin/
- cp archive/msg2archive $pkgdir/usr/bin/
- cp src/hypermail $pkgdir/usr/bin
- cp src/mail $pkgdir/var/www/cgi-bin/
+
+ 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 src/mail "$pkgdir"/var/www/cgi-bin/mail
+ mkdir -p $pkgdir/var/www/htdocs/hypermail/
cp docs/*.html $pkgdir/var/www/htdocs/hypermail/
cp docs/*.png $pkgdir/var/www/htdocs/hypermail/
+
}
md5sums="bacd95589f2f3ca426631461fd9237dd hypermail-2.1.8.tar.gz"