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>
10 pkgdesc="A connection manager for ssh, sftp, ftp and many more connections"
12 url="http://sshmgr.sourceforge.net"
15 depends=(perl perl-appconfig)
23 source=(http://prdownloads.sourceforge.net/sourceforge/sshmgr/${pkgname}_${pkgver}-1.tar.gz Makefile.patch)
25 md5sums=('b3d4fff938723ada86e66a5b58372595'
26 '1c0ab8ac172fb69779318d1936b80755')
30 cd "$startdir/src/$pkgname-$pkgver"
32 patch < $startdir/Makefile.patch
35 make DESTDIR="$startdir/pkg" install
38 # vim:set ts=2 sw=2 et: