diff options
Diffstat (limited to 'libre/hardinfo')
-rw-r--r-- | libre/hardinfo/PKGBUILD | 40 | ||||
-rw-r--r-- | libre/hardinfo/fixsensors.patch | 13 | ||||
-rw-r--r-- | libre/hardinfo/hardinfo.distro | 1 |
3 files changed, 54 insertions, 0 deletions
diff --git a/libre/hardinfo/PKGBUILD b/libre/hardinfo/PKGBUILD new file mode 100644 index 000000000..27913f3f0 --- /dev/null +++ b/libre/hardinfo/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 115005 2014-07-05 03:31:29Z eric $ +# Maintainer (Arch): Eric Bélanger <eric@archlinux.org> +# Contributor: Márcio Silva <coadde@parabola.nu> + +pkgname=hardinfo +pkgver=0.5.1 +pkgrel=6.parabola1 +pkgdesc="A system information and benchmark tool (Parabola rebranded)" +arch=('i686' 'x86_64' 'mips64el') +url="http://sourceforge.net/projects/hardinfo.berlios/" +license=('GPL2') +depends=('gtk2' 'libsoup') +options=('!emptydirs') +replaces=(${pkgname}-parabola) +conflicts=(${pkgname}-parabola) +source=(http://sourceforge.net/projects/hardinfo.berlios/files/${pkgname}-${pkgver}.tar.bz2 + fixsensors.patch hardinfo.distro) +sha1sums=('983f0445aa60e02156bc5a5eaedeffb30b8e4d64' + 'd2151dce76dca238102937d0e15541f172bca530' + '9425e09191cd3a365a3afce57ca1973a6439fa57') + +prepare() { + cd ${pkgname}-${pkgver} + patch -p1 -i "${srcdir}/fixsensors.patch" + sed -i 's|/usr/lib64|/usr/lib|' configure + sed -i 's|lib64|lib|' binreloc.c + sed -i 's|{ DB_PREFIX "debian_version", "deb" },|{ DB_PREFIX "hardinfo.distro", "parabola" },{ DB_PREFIX "debian_version", "deb" },|' computer.h +} + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + install -D -m644 "${srcdir}/hardinfo.distro" "${pkgdir}/etc/hardinfo.distro" +} diff --git a/libre/hardinfo/fixsensors.patch b/libre/hardinfo/fixsensors.patch new file mode 100644 index 000000000..812c29458 --- /dev/null +++ b/libre/hardinfo/fixsensors.patch @@ -0,0 +1,13 @@ + diff -upNr hardinfo-0.4.2.2.orign/util.c hardinfo-0.4.2.2/util.c +--- hardinfo-0.4.2.2.orign/util.c 2007-07-20 16:45:08.000000000 +0200 ++++ hardinfo-0.4.2.2/util.c 2007-07-26 10:15:32.000000000 +0200 +@@ -996,7 +996,8 @@ gchar *h_strdup_cprintf(const gchar * fo + if (source) { + retn = g_strconcat(source, buffer, NULL); + g_free(buffer); +- g_free(source); ++ if(strlen(source)) ++ g_free(source); + } else { + retn = buffer; + } diff --git a/libre/hardinfo/hardinfo.distro b/libre/hardinfo/hardinfo.distro new file mode 100644 index 000000000..cf378523a --- /dev/null +++ b/libre/hardinfo/hardinfo.distro @@ -0,0 +1 @@ +Parabola GNU/Linux-Libre |