diff options
Diffstat (limited to 'community/hashcash')
-rw-r--r-- | community/hashcash/PKGBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/community/hashcash/PKGBUILD b/community/hashcash/PKGBUILD index d171ada31..431c03627 100644 --- a/community/hashcash/PKGBUILD +++ b/community/hashcash/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hashcash pkgver=1.22 pkgrel=3 pkgdesc="a denial-of-service counter measure tool for email/spam." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.hashcash.org" license=('GPL') depends=( 'glibc' ) @@ -15,10 +15,10 @@ md5sums=('31fae207061841dffc7b90ee18e3d0fa') build() { cd ${srcdir}/${pkgname}-${pkgver} - if [ "${CARCH}" = "x86_64" ]; then - make generic-openssl - else + if [ "${CARCH}" = "i686" ]; then make x86-openssl + else + make generic-openssl fi install -Dm755 hashcash ${pkgdir}/usr/bin/hashcash install -Dm755 sha1 ${pkgdir}/usr/bin/sha1 |