From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/rutilt/PKGBUILD | 23 +++++++++++++++++++++++ community/rutilt/rutilt.install | 24 ++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 community/rutilt/PKGBUILD create mode 100644 community/rutilt/rutilt.install (limited to 'community/rutilt') diff --git a/community/rutilt/PKGBUILD b/community/rutilt/PKGBUILD new file mode 100644 index 000000000..1e8f78738 --- /dev/null +++ b/community/rutilt/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 1149 2009-08-12 22:31:02Z ibiru $ +# Maintainer: Giovanni Scafora +# Contributor: Jesus Lazaro Plaza + +pkgname=rutilt +pkgver=0.18 +pkgrel=2 +pkgdesc="Gtk2 utility that helps you configure your wireless network devices" +arch=('i686' 'x86_64') +url="http://bonrom.cbbknet.com" +license=('GPL2') +depends=('gtk2' 'xdg-utils') +makedepends=('wireless_tools') +install=rutilt.install +source=(http://bonrom.cbbknet.com/files/RutilTv0.18.tar.gz) +md5sums=('c745af9fbadd3a843b6f8273b6eb71bd') + +build() { + cd ${startdir}/src/RutilTv${pkgver} + ./configure.sh --prefix=/usr + make || return 1 + make DESTDIR="$startdir/pkg" install +} diff --git a/community/rutilt/rutilt.install b/community/rutilt/rutilt.install new file mode 100644 index 000000000..b8397905a --- /dev/null +++ b/community/rutilt/rutilt.install @@ -0,0 +1,24 @@ +# arg 1: the new package version +post_install() { +which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true + +cat << EOF + +==> Remember to install "dhclient" or customize the "set_ip.sh" to match +==> your needs, don't forget that it is executed with root privileges. +==> Note: rutilt 0.16 doesn't read the old configs, so you have to +==> recreate/rename it. + +EOF +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install $1 +} + +post_remove() { + which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true +} + -- cgit v1.2.3-54-g00ecf