diff options
Diffstat (limited to 'community/gstm/PKGBUILD')
-rw-r--r-- | community/gstm/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/gstm/PKGBUILD b/community/gstm/PKGBUILD new file mode 100644 index 000000000..985683dbe --- /dev/null +++ b/community/gstm/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 5679 2009-11-14 00:54:15Z ibiru $ +# Maintainer: Roman Kyrylych <Roman.Kyrylych@gmail.com> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=gstm +pkgver=1.2 +pkgrel=2 +pkgdesc="Gnome front-end to ssh tunneling" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/gstm/" +license=('GPL') +depends=('libgnomeui') +makedepends=('intltool') +source=(http://downloads.sourceforge.net/sourceforge/gstm/gstm-$pkgver.tar.gz) +md5sums=('7fa71b86969d8d695c3b062780a5694e') + +build() { + cd $startdir/src/gstm-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install +} |