changeset 1044:3ddb7fd43dc5

core/pciutils: initial import, closes #1040
author David Demelier <markand@malikania.fr>
date Fri, 30 Aug 2019 19:46:56 +0200
parents 01f352fae6f4
children dd4af3d78b53
files core/pciutils/pciutils.sh core/pciutils/pciutils.sha1
diffstat 2 files changed, 53 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/pciutils/pciutils.sh	Fri Aug 30 19:46:56 2019 +0200
@@ -0,0 +1,52 @@
+#!/bin/busybox sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=pciutils
+PKGVERSION=3.6.2
+PKGREVISION=1
+PKGLICENSE="GPLv20"
+PKGSUMMARY="portable access to PCI bus configuration"
+PKGDOWNLOAD="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/$PKGNAME-$PKGVERSION.tar.gz"
+PKGOPTIONS="DNS ZLIB"
+
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${DNS:=yes}
+: ${ZLIB:=yes}
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.gz
+	cd $PKGNAME-$PKGVERSION
+
+	make \
+		CC="$CC" \
+		CFLAGS="$CFLAGS" \
+		LDFLAGS="$LDFLAGS" \
+		ZLIB="$ZLIB" \
+		DNS="$DNS" \
+		PREFIX= \
+		SBINDIR=/bin \
+		MANDIR=/share/man \
+		DESTDIR=$DESTDIR \
+		all install
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/pciutils/pciutils.sha1	Fri Aug 30 19:46:56 2019 +0200
@@ -0,0 +1,1 @@
+eb525f1e4a0158357c49df5414d22d6437d7ef8b  pciutils-3.6.2.tar.gz