summaryrefslogtreecommitdiff
path: root/community/nas/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/nas/PKGBUILD')
-rw-r--r--community/nas/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community/nas/PKGBUILD b/community/nas/PKGBUILD
new file mode 100644
index 000000000..b6e3fe87b
--- /dev/null
+++ b/community/nas/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 21701 2010-07-16 22:42:31Z tdziedzic $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: William Rea <sillywilly@gmail.com>
+
+pkgname=nas
+pkgver=1.9.2
+pkgrel=2
+pkgdesc='Network Audio System is a network transparent, client/server audio transport system'
+arch=('i686' 'x86_64')
+url='http://radscan.com/nas.html'
+license=('custom')
+depends=('libxaw')
+makedepends=('imake')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tar.gz"
+ 'license.txt')
+md5sums=('ed7864f55b384452167959022cfb403b'
+ 'f11eb8c3fb83946e66e60f7532e8d5da')
+
+build() {
+ cd ${pkgname}-${pkgver}
+
+ xmkmf
+
+ make World
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+
+ make DESTDIR=${pkgdir} USRLIBDIR=/usr/lib install
+
+ chmod 644 ${pkgdir}/usr/include/audio/*
+
+ install -D -m644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license
+}