mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Drake Justice <djustice[at]chakra-project[dot]org>
|
|
|
|
|
|
pkgname=abs
|
|
pkgver=2.4.3
|
|
pkgrel=1
|
|
pkgdesc="Utilities to download and work with the Arch Build System (ABS)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://projects.archlinux.org/abs.git/"
|
|
license=('GPL')
|
|
depends=('bash' 'rsync')
|
|
backup=(etc/abs.conf)
|
|
install=abs.install
|
|
source=(ftp://ftp.archlinux.org/other/abs/${pkgname}-${pkgver}.tar.gz
|
|
http://chakra-linux.org/sources/abs/abs-chakra)
|
|
md5sums=('b8b46b22d2f9a2aec2c994ccf230b4fd'
|
|
'6f2b27558960b355979f358f35772db4')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}
|
|
|
|
make CONFDIR=/etc/
|
|
make CONFDIR=/etc/ DESTDIR=${pkgdir} install
|
|
|
|
# Add readme file, and make base /var/abs path
|
|
install -dm0755 ${pkgdir}/var/abs/local/
|
|
install -Dm0644 ${srcdir}/abs/README ${pkgdir}/var/abs/README
|
|
|
|
# make adjustments to abs.conf
|
|
if [[ $CARCH = "i686" ]]; then
|
|
sed -i -e 's| multilib||' -e 's| !multilib-testing||' ${pkgdir}/etc/abs.conf
|
|
fi
|
|
if [[ $CARCH = "x86_64" ]]; then
|
|
sed -i '/ARCH=/s|i686|x86_64|' ${pkgdir}/etc/abs.conf
|
|
fi
|
|
|
|
cp -f "${srcdir}/abs-chakra" "${pkgdir}/usr/bin/abs"
|
|
}
|
|
|