updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / connmgr / PKGBUILD
blob8a232b145953d75de610338a34fe68c339020029
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Your Name <youremail@domain.com>
7 pkgname=connmgr
8 pkgver=1.0.0
9 pkgrel=1
10 pkgdesc="A connection manager for ssh, sftp, ftp and many more connections"
11 arch=(i686)
12 url="http://sshmgr.sourceforge.net"
13 license=('GPL')
14 groups=()
15 depends=(perl perl-appconfig)
16 makedepends=()
17 provides=()
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 install=
23 source=(http://prdownloads.sourceforge.net/sourceforge/sshmgr/${pkgname}_${pkgver}-1.tar.gz Makefile.patch)
24 noextract=()
25 md5sums=('b3d4fff938723ada86e66a5b58372595'
26          '1c0ab8ac172fb69779318d1936b80755')
29 build() {
30   cd "$startdir/src/$pkgname-$pkgver"
32   patch < $startdir/Makefile.patch
33   make clean 
34   make || return 1
35   make DESTDIR="$startdir/pkg" install
38 # vim:set ts=2 sw=2 et: