diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-08-08 10:54:13 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-08-08 10:54:13 -0300 |
commit | e0981df8c5fce1353e1499a5085e27f92afddcea (patch) | |
tree | 06de6ad8de74d4b7b040d67f050c1fd43fe83a33 /community/nas | |
parent | 97a74a6a87ccbeb5649f226377d0c10ae824f1e1 (diff) | |
parent | 0f9e4ba23bb6296d8bb8010f70d868fd08db9c54 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/curlftpfs/PKGBUILD
core/libcap/PKGBUILD
core/libsasl/PKGBUILD
core/udev/PKGBUILD
extra/cyrus-sasl/PKGBUILD
extra/dbus/PKGBUILD
extra/fluidsynth/PKGBUILD
extra/mercurial/PKGBUILD
extra/redland/PKGBUILD
extra/soprano/PKGBUILD
multilib/lib32-curl/PKGBUILD
multilib/lib32-freetype2/PKGBUILD
multilib/lib32-mesa/PKGBUILD
multilib/wine/PKGBUILD
Diffstat (limited to 'community/nas')
-rw-r--r-- | community/nas/PKGBUILD | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/community/nas/PKGBUILD b/community/nas/PKGBUILD index dd6d3ad6c..6f5d3ce60 100644 --- a/community/nas/PKGBUILD +++ b/community/nas/PKGBUILD @@ -1,10 +1,11 @@ -# $Id: PKGBUILD 21701 2010-07-16 22:42:31Z tdziedzic $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# $Id: PKGBUILD 53530 2011-08-05 06:06:18Z bfanella $ +# Maintainer: Brad Fanella <bradfanella@archlinux.us> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> pkgname=nas -pkgver=1.9.2 -pkgrel=2 +pkgver=1.9.3 +pkgrel=1 pkgdesc='Network Audio System is a network transparent, client/server audio transport system' arch=('i686' 'x86_64' 'mips64el') url='http://radscan.com/nas.html' @@ -13,23 +14,20 @@ depends=('libxaw') makedepends=('imake') source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tar.gz" 'license.txt') -md5sums=('ed7864f55b384452167959022cfb403b' +md5sums=('ecd01a3b4e17a9d464efa83a03618025' 'f11eb8c3fb83946e66e60f7532e8d5da') build() { - cd ${pkgname}-${pkgver} + cd ${pkgname}-${pkgver} - xmkmf - - make World + xmkmf + make World } package() { - cd ${pkgname}-${pkgver} - - make DESTDIR=${pkgdir} USRLIBDIR=/usr/lib install - - chmod 644 ${pkgdir}/usr/include/audio/* + cd ${pkgname}-${pkgver} - install -D -m644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license + 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 } |