mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added community/calf
This commit is contained in:
parent
bea07984ca
commit
3602548e3a
2 changed files with 46 additions and 0 deletions
32
community/calf/PKGBUILD
Normal file
32
community/calf/PKGBUILD
Normal file
|
@ -0,0 +1,32 @@
|
|||
# $Id$
|
||||
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
|
||||
# Contributor: Ray Rashif <schiv@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - remove --enable-see from configure
|
||||
|
||||
pkgname=calf
|
||||
pkgver=0.0.19
|
||||
pkgrel=3
|
||||
pkgdesc='LV2/DSSI/LADSPA plug-ins suite and standalone JACK host'
|
||||
arch=('x86_64' 'i686')
|
||||
url='http://calf.sf.net/'
|
||||
license=('LGPL')
|
||||
depends=('libglade' 'fftw' 'lash' 'dssi' 'fluidsynth' 'hicolor-icon-theme' 'desktop-file-utils')
|
||||
makedepends=('lv2core' 'ladspa' 'dssi')
|
||||
source=("http://downloads.sf.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
||||
install=calf.install
|
||||
sha256sums=('1106e7e27bcd18d47fc58c952a4dbf6c7a763272e13b2b94cee6f1b2fb922cec')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
./configure --prefix=/usr --enable-experimental
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
make DESTDIR=$pkgdir install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
14
community/calf/calf.install
Normal file
14
community/calf/calf.install
Normal file
|
@ -0,0 +1,14 @@
|
|||
post_install() {
|
||||
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
|
||||
update-desktop-database /usr/share/applications
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in a new issue