summaryrefslogtreecommitdiff
path: root/core/linux-atm/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'core/linux-atm/PKGBUILD')
-rw-r--r--core/linux-atm/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/core/linux-atm/PKGBUILD b/core/linux-atm/PKGBUILD
new file mode 100644
index 000000000..2a7f7c7e0
--- /dev/null
+++ b/core/linux-atm/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 107943 2011-01-28 01:46:01Z stephane $
+# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
+# Contributor: Surain Mallawa Arachchi <mas@crc32.net>
+
+pkgname=linux-atm
+pkgver=2.5.1
+pkgrel=2
+pkgdesc="Drivers and tools to support ATM networking under Linux."
+arch=('i686' 'x86_64')
+depends=('glibc')
+url="http://linux-atm.sourceforge.net/"
+license=(GPL)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tgz
+ man-pages.patch)
+md5sums=('9560b0e1f410a05b849dfdab465dd758'
+ '181390736336cdb615ae32f1ae5acfa6')
+options=(!libtool !makeflags)
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -Np1 -i ../man-pages.patch
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
+