blob: 7a568fb396ebd7498ee45cfa28c60861f70d2417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: A library-based package manager with dependency support
# URL: https://www.archlinux.org/pacman/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: libarchive curl gpgme
name=pacman
version=5.2.1
release=1
source=(https://sources.archlinux.org/other/pacman/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --enable-doc \
--with-scriptlet-shell=/usr/bin/bash \
--with-ldconfig=/usr/bin/ldconfig
make V=1
make DESTDIR=$PKG install
}
|