mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
24 lines
674 B
Bash
24 lines
674 B
Bash
# $Id: PKGBUILD 79085 2010-04-30 07:29:32Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
# Contributor: Surain Mallawa Arachchi <mas@crc32.net>
|
|
|
|
pkgname=linux-atm
|
|
pkgver=2.5.1
|
|
pkgrel=1
|
|
pkgdesc="Drivers and tools to support ATM networking under Linux."
|
|
arch=('i686' 'x86_64')
|
|
depends=('glibc')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz)
|
|
url="http://linux-atm.sourceforge.net/"
|
|
license=(GPL)
|
|
options=(!libtool !makeflags)
|
|
md5sums=('9560b0e1f410a05b849dfdab465dd758')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|