68 lines
1.7 KiB
Bash
68 lines
1.7 KiB
Bash
# vim: set ts=2 sw=2 et:
|
|
# Maintainer:
|
|
|
|
pkgname=pacman
|
|
pkgver=6.0.0
|
|
pkgrel=1
|
|
pkgdesc="A library-based package manager with dependency support"
|
|
arch=('x86_64')
|
|
url="https://www.archlinux.org/pacman/"
|
|
license=('GPL')
|
|
groups=('base-devel')
|
|
depends=('bash' 'glibc' 'libarchive' 'curl'
|
|
'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
|
|
makedepends=('meson' 'asciidoc' 'doxygen')
|
|
checkdepends=('python' 'fakechroot')
|
|
optdepends=('perl-locale-gettext: translation support in makepkg-template')
|
|
provides=('libalpm.so')
|
|
backup=(etc/pacman.conf
|
|
etc/makepkg.conf)
|
|
options=('strip' 'debug')
|
|
validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD' # Allan McRae <allan@archlinux.org>
|
|
'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory (pacman) <andrew@archlinux.org>
|
|
source=(git+https://gitlab.archlinux.org/pacman/pacman.git
|
|
pacman.conf
|
|
makepkg.conf)
|
|
sha256sums=('SKIP'
|
|
'4aea8b8dc81188e9f195d0ac887e3a7c85d1be6545fd675f6c160623023d85b5'
|
|
'172ad7a3539a2f534ef4de5f1608e78a83b5acd181795b4f59fe4eb609488a94')
|
|
|
|
|
|
pkgver() {
|
|
cd pacman
|
|
|
|
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
|
|
}
|
|
|
|
build() {
|
|
cd pacman
|
|
|
|
meson --prefix=/usr \
|
|
--buildtype=plain \
|
|
-Ddoc=enabled \
|
|
-Ddoxygen=enabled \
|
|
-Duse-git-version=true \
|
|
-Dscriptlet-shell=/usr/bin/bash \
|
|
-Dldconfig=/usr/bin/ldconfig \
|
|
build
|
|
|
|
meson compile -C build
|
|
}
|
|
|
|
check() {
|
|
cd pacman
|
|
|
|
meson test -C build
|
|
}
|
|
|
|
package() {
|
|
cd pacman
|
|
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
|
|
# install Arch specific stuff
|
|
install -dm755 "$pkgdir/etc"
|
|
install -m644 "$srcdir/pacman.conf" "$pkgdir/etc"
|
|
install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
|
|
}
|