core/abs/PKGBUILD

44 lines
1.2 KiB
Bash
Raw Normal View History

2011-01-15 05:57:59 +08:00
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
2012-01-14 05:32:48 +08:00
# maintainer (x86_64): Drake Justice <djustice[at]chakra-project[dot]org>
2011-01-15 05:57:59 +08:00
pkgname=abs
2012-01-14 05:32:48 +08:00
pkgver=2.4.3
2011-01-15 05:57:59 +08:00
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
2012-01-14 05:32:48 +08:00
source=(ftp://ftp.archlinux.org/other/abs/${pkgname}-${pkgver}.tar.gz
http://chakra-linux.org/sources/abs/abs-chakra)
md5sums=('b8b46b22d2f9a2aec2c994ccf230b4fd'
'6f2b27558960b355979f358f35772db4')
2011-01-15 05:57:59 +08:00
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
2012-01-14 05:32:48 +08:00
cp -f "${srcdir}/abs-chakra" "${pkgdir}/usr/bin/abs"
2011-01-15 05:57:59 +08:00
}
2012-01-14 05:32:48 +08:00