mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/mmh: update configure flags
Also store configurations in a dedicated directory.
This commit is contained in:
parent
248c2164f0
commit
68df424def
@ -2,7 +2,7 @@
|
||||
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
||||
pkgname=mmh
|
||||
pkgver=0.1
|
||||
pkgrel=0
|
||||
pkgrel=1
|
||||
pkgdesc="MUA for users who like the unix philosophy"
|
||||
url="http://marmaro.de/prog/mmh/"
|
||||
arch="all"
|
||||
@ -18,6 +18,8 @@ source="http://marmaro.de/prog/${pkgname}/files/${pkgname}-${pkgver}.tar.gz
|
||||
_builddir="$srcdir"/$pkgname-$pkgver
|
||||
prepare() {
|
||||
cd "$_builddir"
|
||||
update_config_sub || return 1
|
||||
|
||||
local i=
|
||||
for i in $source; do
|
||||
case $i in
|
||||
@ -28,7 +30,15 @@ prepare() {
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure --prefix=/usr
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc/$pkgname \
|
||||
--mandir=/usr/share/man \
|
||||
--infodir=/usr/share/info \
|
||||
--localstatedir=/var \
|
||||
|| return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user