summaryrefslogtreecommitdiff
path: root/extra/libnl1/PKGBUILD
blob: 57a4c8f5c3bf2b97d75349a997cd77d037a282e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 182913 2013-04-16 05:29:35Z eric $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>

pkgname=libnl1
pkgver=1.1.3
pkgrel=1
pkgdesc="Library for applications dealing with netlink sockets (Legacy version)"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.infradead.org/~tgr/libnl/"
license=('GPL')
depends=('glibc')
options=('!staticlibs')
source=("http://www.infradead.org/~tgr/libnl/files/libnl-${pkgver}.tar.gz")
md5sums=('4e4fa2197f4412b20c2952325d674b12')

build() {
  cd libnl-${pkgver}
  ./configure --prefix=/usr
  make
}

package() {
  cd libnl-${pkgver}
  make DESTDIR="${pkgdir}" install
}