mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
core/pacman to 4.0.3-1
This commit is contained in:
parent
274eabe3f9
commit
ec3a852bbf
2 changed files with 13 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
# vim: set ts=2 sw=2 et:
|
||||
# $Id: PKGBUILD 146700 2012-01-16 19:48:37Z dreisner $
|
||||
# Maintainer: Dan McGee <dan@archlinux.org>
|
||||
# Maintainer: Dave Reisner <dave@archlinux.org>
|
||||
# Maintainer: Dave Reisner <dreisner@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - arch/host/flags for arm and armv7h
|
||||
|
@ -12,8 +12,8 @@ plugrel=1
|
|||
noautobuild=1
|
||||
|
||||
pkgname=pacman
|
||||
pkgver=4.0.2
|
||||
pkgrel=1.1
|
||||
pkgver=4.0.3
|
||||
pkgrel=1
|
||||
pkgdesc="A library-based package manager with dependency support"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.archlinux.org/pacman/"
|
||||
|
@ -29,10 +29,10 @@ options=(!libtool)
|
|||
source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
|
||||
pacman.conf
|
||||
makepkg.conf)
|
||||
md5sums=('289ba4a19a16393096e065cec1cb9b0a'
|
||||
'575140dce3ea597d91b6d081aa3f6a00'
|
||||
md5sums=('387965c7125e60e5f0b9ff3b427fe0f9'
|
||||
'1a70392526c8768470da678b31905a6e'
|
||||
'9c58ab16092e34eb359ea7e8d56bfc3a'
|
||||
'e6d44e71b847d2c98bb38087e33cd76b')
|
||||
'e1328fa6822e9401068707af388f3e23')
|
||||
|
||||
# keep an upgrade path for older installations
|
||||
PKGEXT='.pkg.tar.gz'
|
||||
|
@ -90,8 +90,10 @@ package() {
|
|||
sed -i $pkgdir/etc/pacman.conf -e "s|@CARCH[@]|$mycarch|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
|
||||
install -Dm644 contrib/bash_completion "$pkgdir/usr/share/bash-completion/completions/pacman"
|
||||
for f in makepkg pacman-key; do
|
||||
ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
|
||||
done
|
||||
|
||||
install -Dm644 contrib/zsh_completion $pkgdir/usr/share/zsh/site-functions/_pacman
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ CHOST="@CHOST@"
|
|||
# -mtune optimizes for an architecture, but builds for whole processor family
|
||||
CFLAGS="@CARCHFLAGS@-O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||
CXXFLAGS="@CARCHFLAGS@-O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||
LDFLAGS=""
|
||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
|
||||
#-- Make Flags: change this for DistCC/SMP systems
|
||||
#MAKEFLAGS="-j2"
|
||||
|
||||
|
|
Loading…
Reference in a new issue