29 lines
609 B
Plaintext
29 lines
609 B
Plaintext
#
|
|
# makedist global configuration file
|
|
#
|
|
# Copyright (c) by Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
#
|
|
DISTRONAME="openmamba"
|
|
PORT_FROM_ARCH="i586"
|
|
PORT_DEST_REPOSITORY="devel"
|
|
PORT_AUTODIST_USER="silvan"
|
|
RPM_GPG_KEY=/etc/pki/rpm-gpg/RPM-GPG-KEY-Mambasoft
|
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
REPOSITORY=(
|
|
/var/ftp/pub/openmamba/devel
|
|
/var/ftp/pub/openmamba/devel-games
|
|
)
|
|
#/var/ftp/pub/openmamba/devel-makedist
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
REPOSITORY=(
|
|
/var/ftp/pub/openmamba/devel
|
|
/var/ftp/pub/openmamba/devel-games
|
|
)
|
|
else
|
|
REPOSITORY=(
|
|
/var/ftp/pub/openmamba/devel
|
|
/var/ftp/pub/openmamba/devel-games
|
|
)
|
|
fi
|