core/pacman/PKGBUILD.5

78 lines
2.3 KiB
Groff
Raw Normal View History

2018-02-05 03:42:38 +08:00
pkgname=pacman
2018-02-24 21:05:57 +08:00
pkgver=5.0.2
pkgrel=1
2018-02-05 03:42:38 +08:00
pkgdesc="A library-based package manager with dependency support"
arch=('x86_64')
url="http://www.archlinux.org/pacman/"
license=('GPL')
groups=('base' 'base-devel')
depends=('bash>=4.3.025-1' 'glibc>=2.20-2' 'libarchive=3.2.2' 'curl>=7.28.1'
'gpgme' 'pacman-mirrorlist' 'nettle>=3.1')
checkdepends=('python2' 'fakechroot')
makedepends=('asciidoc')
optdepends=('fakeroot: for makepkg usage as normal user')
backup=(etc/pacman.conf etc/makepkg.conf)
install=pacman.install
options=(!libtool)
source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
2018-02-24 21:05:57 +08:00
pacman5.conf
makepkg5.conf)
sha1sums=('3b9c0797ac04a89d1517771595f13bddc68933b1'
2018-02-05 03:42:38 +08:00
'SKIP'
'735dfdbf78f1249567b3250a2766f55eb6ae9a0c'
'0e61e106d58a332ac7bb0a34885358d37297886e')
2018-02-24 21:05:57 +08:00
validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD' # Allan McRae <allan@archlinux.org>
'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory (pacman) <andrew@archlinux.org>
2018-02-05 03:42:38 +08:00
prepare() {
cd "$pkgname-$pkgver"
}
build() {
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --enable-doc \
--with-scriptlet-shell=/usr/bin/bash \
--with-ldconfig=/usr/bin/ldconfig
make V=1
make -C contrib
}
check() {
make -C "$pkgname-$pkgver" check
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
make DESTDIR="$pkgdir" -C contrib install
# install Chakra specific stuff
2018-02-24 21:05:57 +08:00
install -Dm644 "$srcdir"/pacman5.conf "$pkgdir"/etc/pacman.conf
2018-02-05 03:42:38 +08:00
mycarch="x86_64"
mychost="x86_64-pc-linux-gnu"
myflags="-march=x86-64"
2018-02-24 21:05:57 +08:00
install -Dm644 "$srcdir"/makepkg5.conf "$pkgdir"/etc/makepkg.conf
2018-02-05 03:42:38 +08:00
# 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"
# 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
}