PKGBUILDs/core/pacman/PKGBUILD

123 lines
4.1 KiB
Bash
Raw Normal View History

2012-01-17 22:38:54 +00:00
# vim: set ts=2 sw=2 et:
2016-02-01 13:19:58 +00:00
# $Id$
2010-07-10 01:32:36 +00:00
# Maintainer: Dan McGee <dan@archlinux.org>
2012-05-14 23:35:39 +00:00
# Maintainer: Dave Reisner <dreisner@archlinux.org>
2010-07-10 01:32:36 +00:00
2012-01-17 22:38:54 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2016-02-01 13:19:58 +00:00
# - arch/host/flags for arm, armv6h, armv7h, and aarch64
# - pacman.conf: architecture=arm/armv6h/armv7h/aarch64, added our aur and alarm repos
2017-08-13 17:19:26 +00:00
# - makepkg.conf: adjusted C/CXX/LDFLAGS, drop -z,now for armv5
2014-04-23 00:34:32 +00:00
# - patch to sync filesystem after install/remove
2016-03-12 03:16:56 +00:00
# - reverts to allow scriplet input on stdin
2011-02-06 20:16:05 +00:00
pkgname=pacman
2017-06-16 01:07:31 +00:00
pkgver=5.0.2
2017-08-13 17:19:26 +00:00
pkgrel=2.1
pkgdesc="A library-based package manager with dependency support"
2012-01-17 22:38:54 +00:00
arch=('i686' 'x86_64')
url="http://www.archlinux.org/pacman/"
license=('GPL')
2013-03-03 18:31:10 +00:00
groups=('base' 'base-devel')
2016-02-01 13:19:58 +00:00
depends=('bash' 'glibc' 'libarchive' 'curl'
2012-01-17 22:38:54 +00:00
'gpgme' 'pacman-mirrorlist')
2016-05-23 04:45:48 +00:00
makedepends=('asciidoc')
2013-04-08 00:03:59 +00:00
checkdepends=('python2' 'fakechroot')
2012-01-17 22:38:54 +00:00
optdepends=('fakeroot: for makepkg usage as normal user')
2013-04-08 00:03:59 +00:00
provides=('pacman-contrib')
conflicts=('pacman-contrib')
replaces=('pacman-contrib')
2010-04-27 01:52:11 +00:00
backup=(etc/pacman.conf etc/makepkg.conf)
2014-01-03 02:12:01 +00:00
options=('strip' 'debug')
2017-06-16 01:07:31 +00:00
validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD' # Allan McRae <allan@archlinux.org>
'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory (pacman) <andrew@archlinux.org>
2015-02-23 12:28:56 +00:00
source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
2014-04-23 00:34:32 +00:00
0001-Sychronize-filesystem.patch
2016-02-01 13:19:58 +00:00
0002-Revert-close-stdin-before-running-install-scripts.patch
2016-03-12 03:16:56 +00:00
0003-Revert-alpm_run_chroot-always-connect-parent2child-p.patch
pacman.conf
2015-02-23 12:28:56 +00:00
makepkg.conf)
2017-06-16 01:07:31 +00:00
sha256sums=('dfd36086ad68564bcd977f4a1fafe51dd328acd4a95093ac4bf1249be9c41f0e'
'SKIP'
'5b81731c07945db05011db153cced5294187f16e487ca2fa221bb50aa4a18dc7'
'47b3583d093a9d5305f52f402f103fc5584c986a0272acbd36acfc96a9f01147'
'c8610fbae271167c2a1ae0bf69692038eac24f13921cabf925855a8697ea82f9'
'0c81e6feb426c2def260fe7b0c0586ae191ce3a782d19c119474671f147515c7'
2017-07-14 00:42:29 +00:00
'b5c9c7e09525b1d671f1df96568e06ce966939f8edc788d2753fe1564fd9f64e')
2014-04-23 00:34:32 +00:00
prepare() {
cd $srcdir/$pkgname-$pkgver
2015-07-26 14:45:50 +00:00
2014-04-23 00:34:32 +00:00
patch -p1 -i ../0001-Sychronize-filesystem.patch
2016-02-01 13:19:58 +00:00
patch -p1 -i ../0002-Revert-close-stdin-before-running-install-scripts.patch
2016-03-12 03:16:56 +00:00
patch -p1 -i ../0003-Revert-alpm_run_chroot-always-connect-parent2child-p.patch
2014-04-23 00:34:32 +00:00
}
2010-04-27 01:52:11 +00:00
build() {
2014-05-09 01:55:26 +00:00
cd "$pkgname-$pkgver"
2011-08-14 16:34:13 +00:00
2011-03-25 23:16:57 +00:00
./configure --prefix=/usr --sysconfdir=/etc \
2013-04-08 00:03:59 +00:00
--localstatedir=/var --enable-doc \
--with-scriptlet-shell=/usr/bin/bash \
--with-ldconfig=/usr/bin/ldconfig
2011-02-06 20:13:24 +00:00
make
2013-04-08 00:03:59 +00:00
make -C contrib
2009-12-07 20:25:36 +00:00
}
2012-02-14 14:35:38 +00:00
check() {
make -C "$pkgname-$pkgver" check
}
2009-12-07 20:25:36 +00:00
package() {
2014-05-09 01:55:26 +00:00
cd "$pkgname-$pkgver"
2014-05-09 02:12:40 +00:00
make -j1 DESTDIR="$pkgdir" install
make -j1 DESTDIR="$pkgdir" -C contrib install
2009-12-07 20:25:36 +00:00
# install Arch specific stuff
2014-05-09 01:55:26 +00:00
install -dm755 "$pkgdir/etc"
2014-05-09 02:12:40 +00:00
install -m644 "$srcdir/pacman.conf" "$pkgdir/etc/pacman.conf"
2014-05-09 01:55:26 +00:00
case $CARCH in
2011-05-02 02:46:30 +00:00
arm)
mycarch="arm"
2012-11-05 17:39:36 +00:00
mychost="armv5tel-unknown-linux-gnueabi"
2011-05-02 02:46:30 +00:00
myflags="-march=armv5te "
;;
2012-07-29 19:17:03 +00:00
armv6h)
mycarch="armv6h"
mychost="armv6l-unknown-linux-gnueabihf"
myflags="-march=armv6 -mfloat-abi=hard -mfpu=vfp "
;;
2011-06-22 00:48:50 +00:00
armv7h)
mycarch="armv7h"
2012-07-08 17:41:39 +00:00
mychost="armv7l-unknown-linux-gnueabihf"
myflags="-march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 "
2011-05-02 02:46:30 +00:00
;;
2015-07-05 01:43:31 +00:00
aarch64)
mycarch="aarch64"
mychost="aarch64-unknown-linux-gnu"
myflags="-march=armv8-a "
;;
2011-05-02 02:46:30 +00:00
esac
2014-05-09 01:55:26 +00:00
2011-02-06 20:13:24 +00:00
# set things correctly in the default conf file
2014-05-09 01:55:26 +00:00
install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
sed -i "$pkgdir/etc/makepkg.conf" \
2011-02-06 20:13:24 +00:00
-e "s|@CARCH[@]|$mycarch|g" \
-e "s|@CHOST[@]|$mychost|g" \
-e "s|@CARCHFLAGS[@]|$myflags|g"
2012-01-17 22:38:54 +00:00
sed -i $pkgdir/etc/pacman.conf -e "s|@CARCH[@]|$mycarch|g"
2017-08-13 17:19:26 +00:00
[[ $CARCH == "arm" ]] && sed -i 's/,-z,now//' "$pkgdir/etc/makepkg.conf"
2013-04-08 00:03:59 +00:00
# put bash_completion in the right location
2014-05-09 01:55:26 +00:00
install -dm755 "$pkgdir/usr/share/bash-completion/completions"
mv "$pkgdir/etc/bash_completion.d/pacman" "$pkgdir/usr/share/bash-completion/completions"
rmdir "$pkgdir/etc/bash_completion.d"
2013-04-08 00:03:59 +00:00
2012-05-14 23:35:39 +00:00
for f in makepkg pacman-key; do
ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
done
2014-01-03 02:12:01 +00:00
install -Dm644 contrib/PKGBUILD.vim "$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim"
}