updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / exploitdb-svn / PKGBUILD
bloba0e62fce2d55c243416a20df8e8ad12d904520cd
1 # Contributor: Jinx <Jinxware[at]gmail[dot]com>
3 pkgname=exploitdb-svn
4 pkgver=10
5 pkgrel=2
6 pkgdesc="Exploits Database by Offensive Security"
7 arch=('i686' 'x86_64')
8 url="http://www.exploit-db.com"
9 license=('custom: Various Licenses')
10 makedepends=('subversion')
11 conflicts=('exploit-db')
12 install="post.install"
14 _svntrunk="svn://www.exploit-db.com/exploitdb"
15 _svnmod="exploitdb"
17 build() {
18   cd "$srcdir"
20   if [ -d $_svnmod/.svn ]; then
21     (cd $_svnmod && svn up -r $pkgver)
22   else
23     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
24   fi
26   msg "SVN checkout done or server timeout"
27   msg "Starting to build package..."
30 package() {
31         rm -rf `find "$srcdir/$_svnmod" -type d -name .svn`
32         install -d -m 755 "$pkgdir/usr/src"
33         mv "$srcdir/$_svnmod" "$pkgdir/usr/src"