diff --git a/community/lash/PKGBUILD b/community/lash/PKGBUILD index 04632e5f6..334b3bc42 100644 --- a/community/lash/PKGBUILD +++ b/community/lash/PKGBUILD @@ -1,5 +1,6 @@ # $Id$ -# Maintainer: Sergej Pupykin +# Maintainer: David Runge +# Contributor: Sergej Pupykin # Contributor: DonVla # ALARM: Kevin Mihelich @@ -8,39 +9,36 @@ pkgname=lash pkgver=0.6.0~rc2 _relver=0.6.0.594 -pkgrel=10 +pkgrel=11 pkgdesc="A session management system for JACK and ALSA" -arch=('i686' 'x86_64') -#url="http://lash-audio.org" +arch=('x86_64') url="http://lash.nongnu.org/" -license=('GPL') -depends=('dbus' 'gtk2' 'jack' 'libxml2' 'python2') -install=$pkgname.install -source=("http://download.savannah.gnu.org/releases/lash/${pkgname}-${pkgver}.tar.bz2" - "makefile.patch" +license=('GPL2') +depends=('gtk2' 'jack' 'python2') +#install=$pkgname.install +source=("https://download.savannah.gnu.org/releases/lash/${pkgname}-${pkgver}.tar.bz2" + "fix-manual-generation.patch" '04_disable_stacktrace.patch') -md5sums=('af1dc4f4ceb284b1b0845de4f4c2fe47' - '24ceb7e3d008c25e1490102983165612' - '615f37933cedafae856aa4e7e9c3a4d9') +sha512sums=('704e24ccadccb469e820be5fb58dd4d953a8fc2903cd857a290267a87dda596639ec381d5cb7cdfcd715df7d98d6570e52731bddd17f8a3425edd8b699632401' + '25bb9f97bc6ff7543fea39242bc321b40cd35ba042248671e958348f9e250f810ea1e4753918aceba799b0fdd886184af57a7c497796034b999ca8d6b85e1252') prepare() { - cd "${srcdir}/${pkgname}-${_relver}" - patch -p0 < "${srcdir}/makefile.patch" + cd "${pkgname}-${_relver}" + patch -Np0 -i "../fix-manual-generation.patch" patch -p1 -i ../04_disable_stacktrace.patch - # Python2 fixes export PYTHON="python2" sed -i "s#env python#&2#" clients/lash_control } build() { - cd "${srcdir}/${pkgname}-${_relver}" + cd "${pkgname}-${_relver}" export LDFLAGS="-ldl -lm" ./configure --prefix=/usr make } package() { - cd "${srcdir}/${pkgname}-${_relver}" - make DESTDIR="$pkgdir" install + cd "${pkgname}-${_relver}" + make DESTDIR="${pkgdir}" install } diff --git a/community/lash/makefile.patch b/community/lash/fix-manual-generation.patch similarity index 100% rename from community/lash/makefile.patch rename to community/lash/fix-manual-generation.patch diff --git a/community/lash/lash.install b/community/lash/lash.install deleted file mode 100644 index a169a2211..000000000 --- a/community/lash/lash.install +++ /dev/null @@ -1,6 +0,0 @@ -post_install() { - printf "\n" - printf "==> You might need to add following line to your /etc/services(without quotes):\n" - printf "==> \"lash 14541/tcp # LASH client/server protocol\"\n" - printf "\n" -}