summaryrefslogtreecommitdiff
path: root/community/gnac/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/gnac/PKGBUILD')
-rw-r--r--community/gnac/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/gnac/PKGBUILD b/community/gnac/PKGBUILD
new file mode 100644
index 000000000..9abd3206f
--- /dev/null
+++ b/community/gnac/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 68399 2012-03-24 07:12:29Z bgyorgy $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=gnac
+pkgver=0.2.4
+pkgrel=2
+pkgdesc="Audio converter for GNOME"
+arch=('i686' 'x86_64')
+url="http://gnac.sourceforge.net/"
+license=('GPL')
+depends=('libnotify' 'libunique3' 'gstreamer0.10-base-plugins' 'dconf' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils')
+makedepends=('intltool' 'gnome-doc-utils')
+optdepends=('gstreamer0.10-good-plugins: Extra media codecs'
+ 'gstreamer0.10-bad-plugins: Extra media codecs'
+ 'gstreamer0.10-ugly-plugins: Extra media codecs'
+ 'gstreamer0.10-ffmpeg: Extra media codecs')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('8794871d1abd8c186dd5b01d53f1e62e')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static --disable-schemas-compile
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+}