core/linux-atm/PKGBUILD

24 lines
674 B
Bash
Raw Normal View History

2010-05-16 23:08:55 +08:00
# $Id: PKGBUILD 79085 2010-04-30 07:29:32Z tpowa $
2010-03-13 23:25:19 +08:00
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: Surain Mallawa Arachchi <mas@crc32.net>
pkgname=linux-atm
2010-05-16 23:08:55 +08:00
pkgver=2.5.1
pkgrel=2
2010-03-13 23:25:19 +08:00
pkgdesc="Drivers and tools to support ATM networking under Linux."
arch=('i686' 'x86_64')
depends=('glibc')
2010-05-16 23:08:55 +08:00
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz)
2010-03-13 23:25:19 +08:00
url="http://linux-atm.sourceforge.net/"
license=(GPL)
2010-05-16 23:08:55 +08:00
options=(!libtool !makeflags)
md5sums=('9560b0e1f410a05b849dfdab465dd758')
2010-03-13 23:25:19 +08:00
build() {
2010-05-16 23:08:55 +08:00
cd $srcdir/$pkgname-$pkgver
2010-03-13 23:25:19 +08:00
./configure --prefix=/usr --sysconfdir=/etc || return 1
make || return 1
2010-05-16 23:08:55 +08:00
make DESTDIR=$pkgdir install
2010-03-13 23:25:19 +08:00
}
2010-05-16 23:08:55 +08:00