mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
74 lines
2.2 KiB
Bash
74 lines
2.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): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=pacman
|
|
pkgver=3.5.3
|
|
pkgrel=2
|
|
pkgdesc="A library-based package manager with dependency support"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.archlinux.org/pacman/"
|
|
license=('GPL')
|
|
groups=('base')
|
|
depends=('bash' 'libarchive>=2.8.4' 'libfetch>=2.28' 'pacman-mirrorlist')
|
|
optdepends=('fakeroot: for makepkg usage as normal user'
|
|
'curl: for rankmirrors usage')
|
|
backup=(etc/pacman.conf etc/makepkg.conf)
|
|
install=pacman.install
|
|
options=(!libtool)
|
|
source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz
|
|
pacman.conf.x86_64
|
|
pacman.conf
|
|
makepkg.conf)
|
|
md5sums=('c36c18ed4d8ec69c0ecb4f9684266901'
|
|
'7cc09e46386579933ef50cea30b8389a'
|
|
'6c79bb013b5b6a14126ebcdaef12fdcd'
|
|
'5beebe36bfc1e1f677d5ae12fcff8083')
|
|
|
|
# keep an upgrade path for older installations
|
|
PKGEXT='.pkg.tar.gz'
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-doc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
|
|
# install Chakra specific stuff
|
|
mkdir -p $pkgdir/etc
|
|
case "$CARCH" in
|
|
i686)
|
|
install -m644 $srcdir/pacman.conf $pkgdir/etc/pacman.conf
|
|
mycarch="i686"
|
|
mychost="i686-pc-linux-gnu"
|
|
myflags="-march=i686 "
|
|
;;
|
|
x86_64)
|
|
install -m644 $srcdir/pacman.conf.x86_64 $pkgdir/etc/pacman.conf
|
|
mycarch="x86_64"
|
|
mychost="x86_64-unknown-linux-gnu"
|
|
myflags="-march=x86-64 "
|
|
;;
|
|
esac
|
|
install -m644 $srcdir/makepkg.conf $pkgdir/etc/
|
|
# set things correctly in the default conf file
|
|
sed -i $pkgdir/etc/makepkg.conf \
|
|
-e "s|@CARCH[@]|$mycarch|g" \
|
|
-e "s|@CHOST[@]|$mychost|g" \
|
|
-e "s|@CARCHFLAGS[@]|$myflags|g"
|
|
|
|
# install completion files
|
|
mkdir -p $pkgdir/etc/bash_completion.d/
|
|
install -m644 contrib/bash_completion $pkgdir/etc/bash_completion.d/pacman
|
|
mkdir -p $pkgdir/usr/share/zsh/site-functions/
|
|
install -m644 contrib/zsh_completion $pkgdir/usr/share/zsh/site-functions/_pacman
|
|
}
|
|
|
|
# vim: set ts=2 sw=2 et:
|