summaryrefslogtreecommitdiff
path: root/manualPorts/pacman/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/pacman/Pkgfile')
-rw-r--r--manualPorts/pacman/Pkgfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/manualPorts/pacman/Pkgfile b/manualPorts/pacman/Pkgfile
new file mode 100644
index 0000000..6ae3984
--- /dev/null
+++ b/manualPorts/pacman/Pkgfile
@@ -0,0 +1,20 @@
+# Description: A library-based package manager with dependency support
+# URL: https://www.archlinux.org/pacman/
+# Maintainer: Erich Eckner, erich 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
+}