diff options
author | N. I | 2016-02-28 23:45:03 +0800 |
---|---|---|
committer | N. I | 2016-02-28 23:45:03 +0800 |
commit | 6d34c5ffd5ae6cb83a52c6520c495a390ac8ee81 (patch) | |
tree | f2f48ef96ec731c2e7de2ab1c4bbec2583bb420c /PKGBUILD | |
parent | 557405e7825f5bf995fa1ae32a8805140d4f6e6b (diff) | |
download | aur-6d34c5ffd5ae6cb83a52c6520c495a390ac8ee81.tar.gz |
minor: re-add the --enable-mode={64,32} flags
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -4,7 +4,7 @@ # Maintainer: N. I. - izmntuk pkgname=dar pkgver=2.5.3 -pkgrel=1 +pkgrel=2 pkgdesc='A full featured command-line backup tool, short for Disk ARchive' arch=('i686' 'x86_64') url='http://dar.linux.free.fr/' @@ -19,7 +19,12 @@ options=('!libtool') build() { cd "${srcdir}/${pkgname}-${pkgver}" ## --enable-threadar: EXPERIMENTAL multithread support - ./configure --prefix=/usr --sysconfdir=/etc --disable-dar-static --disable-static --disable-upx --disable-build-html + if [[ "${CARCH}" == x86_64 ]];then + EXTRA_OPTIONS="--enable-mode=64" + elif [[ "${CARCH}" == i686 ]];then + EXTRA_OPTIONS="--enable-mode=32" + fi + ./configure --prefix=/usr --sysconfdir=/etc --disable-dar-static --disable-static --disable-upx --disable-build-html ${EXTRA_OPTIONS} make } |