diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-14 13:56:57 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-14 13:56:57 -0300 |
commit | 2a5d7fae98236635f0b42f281b98c7fa878651b2 (patch) | |
tree | 70dd342f375174900d28e203fa4cca8162c5ffc8 /community/lorcon-old-svn/PKGBUILD | |
parent | 342f33686394ec009cb900cbb583997521ff362c (diff) | |
parent | f4dcb5cb43b68e265512a03a160bdda634818b43 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/lorcon-old-svn/PKGBUILD
extra/ristretto/PKGBUILD
libre/texlive-bin-libre/PKGBUILD
multilib/lib32-util-linux/PKGBUILD
Diffstat (limited to 'community/lorcon-old-svn/PKGBUILD')
-rw-r--r-- | community/lorcon-old-svn/PKGBUILD | 50 |
1 files changed, 17 insertions, 33 deletions
diff --git a/community/lorcon-old-svn/PKGBUILD b/community/lorcon-old-svn/PKGBUILD index 4a14578a3..0a9fb9e0b 100644 --- a/community/lorcon-old-svn/PKGBUILD +++ b/community/lorcon-old-svn/PKGBUILD @@ -1,43 +1,27 @@ -# Maintainer: Brad Fanella <bradfanella@archlinux.us> +# $Id: PKGBUILD 60383 2011-12-12 18:03:48Z andrea $ +# Maintainer: +# Contributor: Brad Fanella <bradfanella@archlinux.us> # Contributor: fnord0 [fnord0 <AT> riseup <DOT> net] pkgname=lorcon-old-svn -pkgver=197 -pkgrel=2 -makedepends=('subversion') -pkgdesc="Loss Of Radio CONnectivity: A generic library for injecting 802.11 frames, capable of injection via multiple driver frameworks, without forcing modification of the application code." -url="http://802.11ninja.net" -license="GPL" +pkgver=224 +pkgrel=1 +pkgdesc="Loss Of Radio CONnectivity: A generic library for injecting 802.11 frames" +url='http://802.11ninja.net' +license=('GPL') arch=('i686' 'x86_64' 'mips64el') - -_svntrunk=http://802.11ninja.net/svn/lorcon/branch/lorcon-old/ -_svnmod=lorcon-old +depends=('libnl') +options=('!libtool') +source=("ftp://ftp.archlinux.org/other/community/lorcon-old/lorcon-old-${pkgver}.tar.bz2") +md5sums=('7a939cc8ec0d70d1b312b9fe9f0dfaf8') build() { - cd ${srcdir} - - # Fetch latest svn build - if [ -d ${_svnmod}/.svn ]; then - msg "Updating lorcon-old SVN..." - cd ${_svnmod} && svn up - else - msg "Checking out lorcon-old SVN..." - svn co ${_svntrunk} -r 224 ${_svnmod} - fi - - msg "SVN checkout done or server timeout" - - # Compile - cd ${srcdir}/${_svnmod} - msg "Starting make..." - ./configure --prefix=/usr - make + cd "${srcdir}/lorcon-old-${pkgver}" + ./configure --prefix=/usr + make } package() { - cd ${srcdir}/${_svnmod} - - # Install - make DESTDIR="${pkgdir}" install + cd "${srcdir}/lorcon-old-${pkgver}" + make DESTDIR="${pkgdir}" install } - |