You are not logged in.
Pages: 1
I've update the nmap PKGBUILD taken from Arch CVS. I upgrade previous version on my pc without problem. That's the code:
# $Id: PKGBUILD,v 1.38 2005/02/22 19:02:41 dorphell Exp $
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=nmap
pkgver=3.93
pkgrel=1
pkgdesc="A network exploration tool and security/port scanner"
url="http://www.insecure.org"
depends=('pcre' 'openssl')
makedepends=('gtk')
source=(http://download.insecure.org/nmap/dist/$pkgname-$pkgver.tgz)
md5sums=('9998b39f09b7ee066ae2952bd009e453')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
rm -rf $startdir/pkg/usr/share/gnome
}
I've not modified PKGBUILD version ( 1.38 ).
Offline
You should refrain from posting updated PKGBUILD for stuff already in the repo. Especially if only the pkgver has to be changed. It just clutters the forums.
Offline
I understand, but repo version is very old, and new version is one month old... next time i'll contact the manteiner...
Offline
Pages: 1