mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
116 lines
3.6 KiB
Bash
116 lines
3.6 KiB
Bash
# 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 <dreisner@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - arch/host/flags for arm, armv6h, and armv7h
|
|
# - pacman.conf: architecture=arm/armv6h/armv7h, added our aur and alarm repos
|
|
# - makepkg.conf: adjusted C/CXX/LDFLAGS
|
|
# - patch to sync filesystem after install/remove
|
|
|
|
pkgname=pacman
|
|
pkgver=4.2.1
|
|
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' 'base-devel')
|
|
depends=('bash' 'glibc' 'libarchive>=3.1.2' 'curl>=7.39.0'
|
|
'gpgme' 'pacman-mirrorlist')
|
|
makedepends=('asciidoc') # roundup patch alters docs
|
|
checkdepends=('python2' 'fakechroot')
|
|
optdepends=('fakeroot: for makepkg usage as normal user')
|
|
provides=('pacman-contrib')
|
|
conflicts=('pacman-contrib')
|
|
replaces=('pacman-contrib')
|
|
backup=(etc/pacman.conf etc/makepkg.conf)
|
|
options=('strip' 'debug')
|
|
source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
|
|
ensure-matching-database-and-package-version.patch
|
|
0001-Sychronize-filesystem.patch
|
|
pacman.conf
|
|
makepkg.conf)
|
|
md5sums=('2a596fc8f723e99660c0869a74afcf47'
|
|
'SKIP'
|
|
'e8f72afe6f417d11bd36ada042744fe4'
|
|
'291123878ec33ca8a3020ac85f2e91d1'
|
|
'5c491b27bae54d93d6ba972ce0fccfa7'
|
|
'c88c41076f26e97c6915d8b967df96e7')
|
|
validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD') # Allan McRae <allan@archlinux.org>
|
|
|
|
prepare() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
patch -p1 -i $srcdir/ensure-matching-database-and-package-version.patch
|
|
patch -p1 -i ../0001-Sychronize-filesystem.patch
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --enable-doc \
|
|
--with-scriptlet-shell=/usr/bin/bash \
|
|
--with-ldconfig=/usr/bin/ldconfig
|
|
make
|
|
make -C contrib
|
|
}
|
|
|
|
check() {
|
|
make -C "$pkgname-$pkgver" check
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
make -j1 DESTDIR="$pkgdir" -C contrib install
|
|
|
|
# install Arch specific stuff
|
|
install -dm755 "$pkgdir/etc"
|
|
install -m644 "$srcdir/pacman.conf" "$pkgdir/etc/pacman.conf"
|
|
|
|
case $CARCH in
|
|
arm)
|
|
mycarch="arm"
|
|
mychost="armv5tel-unknown-linux-gnueabi"
|
|
myflags="-march=armv5te "
|
|
;;
|
|
armv6h)
|
|
mycarch="armv6h"
|
|
mychost="armv6l-unknown-linux-gnueabihf"
|
|
myflags="-march=armv6 -mfloat-abi=hard -mfpu=vfp "
|
|
;;
|
|
armv7h)
|
|
mycarch="armv7h"
|
|
mychost="armv7l-unknown-linux-gnueabihf"
|
|
myflags="-march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 "
|
|
;;
|
|
aarch64)
|
|
mycarch="aarch64"
|
|
mychost="aarch64-unknown-linux-gnu"
|
|
myflags="-march=armv8-a "
|
|
;;
|
|
esac
|
|
|
|
# set things correctly in the default conf file
|
|
install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
|
|
sed -i "$pkgdir/etc/makepkg.conf" \
|
|
-e "s|@CARCH[@]|$mycarch|g" \
|
|
-e "s|@CHOST[@]|$mychost|g" \
|
|
-e "s|@CARCHFLAGS[@]|$myflags|g"
|
|
sed -i $pkgdir/etc/pacman.conf -e "s|@CARCH[@]|$mycarch|g"
|
|
|
|
# put bash_completion in the right location
|
|
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"
|
|
|
|
for f in makepkg pacman-key; do
|
|
ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
|
|
done
|
|
|
|
install -Dm644 contrib/PKGBUILD.vim "$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim"
|
|
}
|