mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
24 lines
684 B
Bash
24 lines
684 B
Bash
|
# $Id: PKGBUILD 1146 2009-08-12 22:21:22Z dgriffiths $
|
||
|
# Maintainer: Giovanni Scafora <linuxmania@gmail.com>
|
||
|
# Contributor: Jesus Lazaro Plaza <jesuslazaro84@gmail.com>
|
||
|
|
||
|
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
|
||
|
}
|