summaryrefslogtreecommitdiff
path: root/libre-testing/psmisc
diff options
context:
space:
mode:
authorBruno Cichon <ebrasca@librepanther.com>2018-10-01 01:51:03 +0200
committerBruno Cichon <ebrasca@librepanther.com>2018-10-01 01:51:03 +0200
commit56f955aca6231693fe797de4793f77ed58ab116e (patch)
tree17daeabce98174f288bab94b47961dc9e9931e66 /libre-testing/psmisc
parent75ff40baa049bae7e9270d20ef86a88b733006ab (diff)
Add some base packages for ppc64le
Diffstat (limited to 'libre-testing/psmisc')
-rw-r--r--libre-testing/psmisc/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/libre-testing/psmisc/PKGBUILD b/libre-testing/psmisc/PKGBUILD
new file mode 100644
index 000000000..b64facf11
--- /dev/null
+++ b/libre-testing/psmisc/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: Eric BĂ©langer <eric@archlinux.org>
+
+pkgname=psmisc
+pkgver=23.1
+pkgrel=1
+pkgdesc="Miscellaneous procfs tools"
+arch=('x86_64' 'ppc64le')
+url="http://psmisc.sourceforge.net/index.html"
+license=('GPL')
+groups=('base')
+depends=('ncurses')
+source=(http://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('2e84d474cf75dfbe3ecdacfb797bbfab71a35c7c2639d1b9f6d5f18b2149ba30')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}